GET api/OpsLog/SelectTaskArrive/{auth}/{EntityGUID}/{EntityType}

Used to select data for the arrive task (ARRIVE)

Request Information

URI Parameters

NameDescriptionTypeAdditional information
auth

The authorization GUID for this user session

string

Required

EntityGUID

The entity identifer of the task (ManifestGUID)

string

Required

EntityType

The entity type of the task (M=manifest)

string

Required

Body Parameters

None.

Response Information

Resource Description

TaskArriveResp
NameDescriptionTypeAdditional information
ManifestGUID

Manifest identifier for this flight

string

None.

TrackingUrl

Link to the airline tracking website for this flight

string

None.

CarrierKey

The carriers IATA key code

string

None.

CarrierName

The name of the carrier

string

None.

RouteNumber

The carrier route number

string

None.

DepartHubID

The depart hub (airport)

string

None.

ArriveHubID

The arrival hub (airport)

string

None.

EstimatedDepartDateTime

The estimated date/time of departure (local time)

date

None.

EstimatedArriveDateTime

The estimated date/time of arrival (local time)

date

None.

ManifestLegID

The unique transport leg identifier (use this for update method)

integer

None.

IsSuccessful

Set to true if method was successful

boolean

None.

ErrorMessage

The error message if method call was not successful

string

None.

Response Formats

application/json, text/json

Sample:
{
  "ManifestGUID": "sample string 1",
  "TrackingUrl": "sample string 2",
  "CarrierKey": "sample string 3",
  "CarrierName": "sample string 4",
  "RouteNumber": "sample string 5",
  "DepartHubID": "sample string 6",
  "ArriveHubID": "sample string 7",
  "EstimatedDepartDateTime": "2024-09-22T18:31:07.2172715-07:00",
  "EstimatedArriveDateTime": "2024-09-22T18:31:07.2172715-07:00",
  "ManifestLegID": 8,
  "IsSuccessful": true,
  "ErrorMessage": "sample string 10"
}

application/xml, text/xml

Sample:
<TaskArriveResp xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Mnx.WebApi.Transportation.Models">
  <ErrorMessage>sample string 10</ErrorMessage>
  <IsSuccessful>true</IsSuccessful>
  <ArriveHubID>sample string 7</ArriveHubID>
  <CarrierKey>sample string 3</CarrierKey>
  <CarrierName>sample string 4</CarrierName>
  <DepartHubID>sample string 6</DepartHubID>
  <EstimatedArriveDateTime>2024-09-22T18:31:07.2172715-07:00</EstimatedArriveDateTime>
  <EstimatedDepartDateTime>2024-09-22T18:31:07.2172715-07:00</EstimatedDepartDateTime>
  <ManifestGUID>sample string 1</ManifestGUID>
  <ManifestLegID>8</ManifestLegID>
  <RouteNumber>sample string 5</RouteNumber>
  <TrackingUrl>sample string 2</TrackingUrl>
</TaskArriveResp>