POST api/OpsLog/UpdateTaskOpsAcknowledge/{auth}/{EntityGUID}/{EntityType}
Use this method to update information for the Ready for Operations task.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| auth |
The authorization GUID for this user session |
string |
Required |
| EntityGUID |
The entity identifer of the task |
string |
Required |
| EntityType |
The entity type of the task (should only be "S") |
string |
Required |
Body Parameters
(see example below)
TaskOpsAcknowledgeParm| Name | Description | Type | Additional information |
|---|---|---|---|
| NewPickupGUID | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"NewPickupGUID": "sample string 1"
}
application/xml, text/xml
Sample:
<TaskOpsAcknowledgeParm xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Mnx.WebApi.Transportation.Models"> <NewPickupGUID>sample string 1</NewPickupGUID> </TaskOpsAcknowledgeParm>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Success or failure and error detail
TaskUpdateResp| Name | Description | Type | Additional information |
|---|---|---|---|
| IsSuccessful | boolean |
None. |
|
| ErrorMessage | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"IsSuccessful": true,
"ErrorMessage": "sample string 2"
}
application/xml, text/xml
Sample:
<TaskUpdateResp xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Mnx.WebApi.Transportation.Models"> <ErrorMessage>sample string 2</ErrorMessage> <IsSuccessful>true</IsSuccessful> </TaskUpdateResp>