POST api/OpsLog/UpdateTaskCsrAcknowledge/{auth}/{EntityGUID}/{EntityType}

Use this method to update information for the (CSR)Acknowledge task.

Request Information

URI Parameters

NameDescriptionTypeAdditional 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)

TaskAcknowledgeParm
NameDescriptionTypeAdditional information
Status

integer

None.

TrackingNumber

string

None.

PickupGUID

string

None.

Request Formats

application/json, text/json

Sample:
{
  "Status": 1,
  "TrackingNumber": "sample string 2",
  "PickupGUID": "sample string 3"
}

application/xml, text/xml

Sample:
<TaskAcknowledgeParm xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Mnx.WebApi.Transportation.Models">
  <PickupGUID>sample string 3</PickupGUID>
  <Status>1</Status>
  <TrackingNumber>sample string 2</TrackingNumber>
</TaskAcknowledgeParm>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Success or failure and error detail

TaskUpdateResp
NameDescriptionTypeAdditional 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>