POST CustomERP/InsertCustomTask
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
CustomTaskDetails| Name | Description | Type | Additional information |
|---|---|---|---|
| Error | string |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| Status | string |
None. |
|
| ProjectCustomTask | Collection of ProjectCustomTask |
None. |
Response Formats
application/json, text/json
Sample:
{
"Error": "sample string 1",
"StatusCode": 100,
"Status": "sample string 2",
"ProjectCustomTask": [
{
"Taskid": "sample string 1",
"TaskCode": "sample string 2",
"StageId": "sample string 3",
"ProjectId": "sample string 4",
"Task": "sample string 5",
"TaskFrom": "sample string 6",
"TaskTo": "sample string 7"
},
{
"Taskid": "sample string 1",
"TaskCode": "sample string 2",
"StageId": "sample string 3",
"ProjectId": "sample string 4",
"Task": "sample string 5",
"TaskFrom": "sample string 6",
"TaskTo": "sample string 7"
}
]
}
application/xml, text/xml
Sample:
<CustomTaskDetails xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CustomERPAPI.Models">
<Error>sample string 1</Error>
<ProjectCustomTask>
<ProjectCustomTask>
<ProjectId>sample string 4</ProjectId>
<StageId>sample string 3</StageId>
<Task>sample string 5</Task>
<TaskCode>sample string 2</TaskCode>
<TaskFrom>sample string 6</TaskFrom>
<TaskTo>sample string 7</TaskTo>
<Taskid>sample string 1</Taskid>
</ProjectCustomTask>
<ProjectCustomTask>
<ProjectId>sample string 4</ProjectId>
<StageId>sample string 3</StageId>
<Task>sample string 5</Task>
<TaskCode>sample string 2</TaskCode>
<TaskFrom>sample string 6</TaskFrom>
<TaskTo>sample string 7</TaskTo>
<Taskid>sample string 1</Taskid>
</ProjectCustomTask>
</ProjectCustomTask>
<Status>sample string 2</Status>
<StatusCode>Continue</StatusCode>
</CustomTaskDetails>