POST api/v1/task/CreateNewSubTask
Request Information
URI Parameters
None.
Body Parameters
CreateNewSubTaskRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| projectId | integer |
None. |
|
| parentTaskId | integer |
None. |
|
| tags | string |
None. |
|
| taskName | string |
None. |
|
| taskDescription | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"projectId": 1,
"parentTaskId": 2,
"tags": "sample string 3",
"taskName": "sample string 4",
"taskDescription": "sample string 5"
}
application/xml, text/xml
Sample:
<CreateNewSubTaskRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/JumpplApiExternal.Models.CustomModelsV1"> <parentTaskId>2</parentTaskId> <projectId>1</projectId> <tags>sample string 3</tags> <taskDescription>sample string 5</taskDescription> <taskName>sample string 4</taskName> </CreateNewSubTaskRequest>
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.