POST api/OpsLog/UpdateTaskReadyForOps/{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)
TaskReadyForOpsParm| Name | Description | Type | Additional information |
|---|---|---|---|
| IsReadyForOperations | boolean |
None. |
|
| IsOperationsCoordinator | boolean |
None. |
|
| NewPickupGUID | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"IsReadyForOperations": true,
"IsOperationsCoordinator": true,
"NewPickupGUID": "sample string 3"
}
application/xml, text/xml
Sample:
<TaskReadyForOpsParm xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Mnx.WebApi.Transportation.Models"> <IsOperationsCoordinator>true</IsOperationsCoordinator> <IsReadyForOperations>true</IsReadyForOperations> <NewPickupGUID>sample string 3</NewPickupGUID> </TaskReadyForOpsParm>
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>