POST api/app/Schedule/MarkTaskComplete
Request Information
URI Parameters
None.
Body Parameters
TaskCompletion| Name | Description | Type | Additional information |
|---|---|---|---|
| ERPType | string |
Required |
|
| ERPCCId | string |
None. |
|
| TaskId | string |
Required |
|
| CompletedBy | string |
None. |
|
| CompletedDate | string |
Required |
|
| Notes | string |
None. |
|
| Attachments | Collection of TaskAttachment |
None. |
Request Formats
application/json, text/json
Sample:
{
"ERPType": "sample string 1",
"ERPCCId": "sample string 2",
"TaskId": "sample string 3",
"CompletedBy": "sample string 4",
"CompletedDate": "sample string 5",
"Notes": "sample string 6",
"Attachments": [
{
"FileContent": "sample string 1",
"Name": "sample string 2",
"Extension": "sample string 3"
},
{
"FileContent": "sample string 1",
"Name": "sample string 2",
"Extension": "sample string 3"
}
]
}
application/xml, text/xml
Sample:
<TaskCompletion xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Central.API.BindingModel">
<RequestId xmlns="http://schemas.datacontract.org/2004/07/Central.API.Enterprise.BindingModels">d9ebb3ab-6a5d-4ec8-94d6-cbcddfec8a15</RequestId>
<Attachments>
<TaskAttachment>
<RequestId xmlns="http://schemas.datacontract.org/2004/07/Central.API.Enterprise.BindingModels">79490fb0-7824-4ca7-bc35-31f46622cb75</RequestId>
<Extension>sample string 3</Extension>
<FileContent>sample string 1</FileContent>
<Name>sample string 2</Name>
</TaskAttachment>
<TaskAttachment>
<RequestId xmlns="http://schemas.datacontract.org/2004/07/Central.API.Enterprise.BindingModels">79490fb0-7824-4ca7-bc35-31f46622cb75</RequestId>
<Extension>sample string 3</Extension>
<FileContent>sample string 1</FileContent>
<Name>sample string 2</Name>
</TaskAttachment>
</Attachments>
<CompletedBy>sample string 4</CompletedBy>
<CompletedDate>sample string 5</CompletedDate>
<ERPCCId>sample string 2</ERPCCId>
<ERPType>sample string 1</ERPType>
<Notes>sample string 6</Notes>
<TaskId>sample string 3</TaskId>
</TaskCompletion>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ResponseModelOfObject| Name | Description | Type | Additional information |
|---|---|---|---|
| ResponseTime | date |
None. |
|
| ResponseCode | ResponseCode |
None. |
|
| ResponseMessage | string |
None. |
|
| ResponsePermission | string |
None. |
|
| DataSet | Object |
None. |
Response Formats
application/json, text/json
Sample:
{
"ResponseTime": "2026-02-17T07:25:54.7256438+00:00",
"ResponseCode": 0,
"ResponseMessage": "sample string 2",
"ResponsePermission": "sample string 3",
"DataSet": {}
}
application/xml, text/xml
Sample:
<ResponseModelOfanyType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Central.API.Enterprise.BindingModels"> <DataSet /> <ResponseCode>NoDataFound</ResponseCode> <ResponseMessage>sample string 2</ResponseMessage> <ResponsePermission>sample string 3</ResponsePermission> <ResponseTime>2026-02-17T07:25:54.7256438+00:00</ResponseTime> </ResponseModelOfanyType>