POST api/v1/task/CreateNewTask
Request Information
URI Parameters
None.
Body Parameters
CreateNewTaskRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| projectId | integer |
None. |
|
| tags | string |
None. |
|
| taskName | string |
None. |
|
| taskDescription | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"projectId": 1,
"tags": "sample string 2",
"taskName": "sample string 3",
"taskDescription": "sample string 4"
}
application/xml, text/xml
Sample:
<CreateNewTaskRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/JumpplApiExternal.Models.CustomModelsV1"> <projectId>1</projectId> <tags>sample string 2</tags> <taskDescription>sample string 4</taskDescription> <taskName>sample string 3</taskName> </CreateNewTaskRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.