POST api/Vendor/UpdateTaskDepartToAirport

Update information for Depart to Airport Task (DEPTOAP).

Request Information

URI Parameters

None.

Body Parameters

TaskDepartToAirportParm
NameDescriptionTypeAdditional information
UserGUID

Unique user global identifier

string

None.

EntityGUID

Unique system assigned entity identifier

string

None.

EntityType

Type of entity

string

None.

Comment

Notes reguarding task

string

None.

LocationData

Geolocation provided at time task is completed

string

None.

Request Formats

application/json, text/json

Sample:
{
  "UserGUID": "sample string 1",
  "EntityGUID": "sample string 2",
  "EntityType": "sample string 3",
  "Comment": "sample string 4",
  "LocationData": "sample string 5"
}

application/xml, text/xml

Sample:
<TaskDepartToAirportParm xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ParcelLogic.WebApi.Mobile.Models">
  <Comment>sample string 4</Comment>
  <EntityGUID>sample string 2</EntityGUID>
  <EntityType>sample string 3</EntityType>
  <LocationData>sample string 5</LocationData>
  <UserGUID>sample string 1</UserGUID>
</TaskDepartToAirportParm>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ResponseBase
NameDescriptionTypeAdditional information
IsSuccessful

Used to determine if method call was successful (true) or failure (false)

boolean

Required

ErrorMessage

The error message if method call was not successful

string

None.

Response Formats

application/json, text/json

Sample:
{
  "IsSuccessful": true,
  "ErrorMessage": "sample string 2"
}

application/xml, text/xml

Sample:
<ResponseBase xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ParcelLogic.WebApi.Mobile.Models">
  <ErrorMessage>sample string 2</ErrorMessage>
  <IsSuccessful>true</IsSuccessful>
</ResponseBase>