POST api/Route/CheckFlightStatus

Request Information

URI Parameters

None.

Body Parameters

FlightStatusParm
NameDescriptionTypeAdditional information
auth

string

None.

CarrierKey

string

None.

RouteNumber

string

None.

DepartDate

date

None.

DepartureAirportID

string

None.

Request Formats

application/json, text/json

Sample:
{
  "auth": "sample string 1",
  "CarrierKey": "sample string 2",
  "RouteNumber": "sample string 3",
  "DepartDate": "2024-09-19T09:13:39.4715098+00:00",
  "DepartureAirportID": "sample string 5"
}

application/xml, text/xml

Sample:
<FlightStatusParm xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ParcelLogic.WebApi.Transportation.Models">
  <CarrierKey>sample string 2</CarrierKey>
  <DepartDate>2024-09-19T09:13:39.4715098+00:00</DepartDate>
  <DepartureAirportID>sample string 5</DepartureAirportID>
  <RouteNumber>sample string 3</RouteNumber>
  <auth>sample string 1</auth>
</FlightStatusParm>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

FlightStatusResp
NameDescriptionTypeAdditional information
IsSuccessful

boolean

None.

ErrorMessage

string

None.

ErrorCode

string

None.

IataID

string

None.

FlightNum

string

None.

StatusCode

string

None.

StatusDescription

string

None.

SchedDepartureDateTime

date

None.

SchedDepartureDateTimeUTC

date

None.

ActualDepartureDateTime

date

None.

ActualDepartureDateTimeUTC

date

None.

SchedArrivalDateTime

date

None.

SchedArrivalDateTimeUTC

date

None.

ActualArrivalDateTime

date

None.

ActualArrivalDateTimeUTC

date

None.

MapURL

string

None.

OriginAirportCode

string

None.

DestinationAirportCode

string

None.

Latitude

decimal number

None.

Longitude

decimal number

None.

Response Formats

application/json, text/json

Sample:
{
  "IataID": "sample string 1",
  "FlightNum": "sample string 2",
  "StatusCode": "sample string 3",
  "StatusDescription": "sample string 4",
  "SchedDepartureDateTime": "2024-09-19T09:13:39.4715098+00:00",
  "SchedDepartureDateTimeUTC": "2024-09-19T09:13:39.4715098+00:00",
  "ActualDepartureDateTime": "2024-09-19T09:13:39.4715098+00:00",
  "ActualDepartureDateTimeUTC": "2024-09-19T09:13:39.4715098+00:00",
  "SchedArrivalDateTime": "2024-09-19T09:13:39.4715098+00:00",
  "SchedArrivalDateTimeUTC": "2024-09-19T09:13:39.4715098+00:00",
  "ActualArrivalDateTime": "2024-09-19T09:13:39.4715098+00:00",
  "ActualArrivalDateTimeUTC": "2024-09-19T09:13:39.4715098+00:00",
  "MapURL": "sample string 5",
  "OriginAirportCode": "sample string 6",
  "DestinationAirportCode": "sample string 7",
  "Latitude": 1.0,
  "Longitude": 1.0,
  "IsSuccessful": true,
  "ErrorMessage": "sample string 2",
  "ErrorCode": "sample string 3"
}

application/xml, text/xml

Sample:
<FlightStatusResp xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ParcelLogic.WebApi.Transportation.Models">
  <ActualArrivalDateTime>2024-09-19T09:13:39.4715098+00:00</ActualArrivalDateTime>
  <ActualArrivalDateTimeUTC>2024-09-19T09:13:39.4715098+00:00</ActualArrivalDateTimeUTC>
  <ActualDepartureDateTime>2024-09-19T09:13:39.4715098+00:00</ActualDepartureDateTime>
  <ActualDepartureDateTimeUTC>2024-09-19T09:13:39.4715098+00:00</ActualDepartureDateTimeUTC>
  <DestinationAirportCode>sample string 7</DestinationAirportCode>
  <ErrorCode>sample string 3</ErrorCode>
  <ErrorMessage>sample string 2</ErrorMessage>
  <FlightNum>sample string 2</FlightNum>
  <IataID>sample string 1</IataID>
  <IsSuccessful>true</IsSuccessful>
  <Latitude>1</Latitude>
  <Longitude>1</Longitude>
  <MapURL>sample string 5</MapURL>
  <OriginAirportCode>sample string 6</OriginAirportCode>
  <SchedArrivalDateTime>2024-09-19T09:13:39.4715098+00:00</SchedArrivalDateTime>
  <SchedArrivalDateTimeUTC>2024-09-19T09:13:39.4715098+00:00</SchedArrivalDateTimeUTC>
  <SchedDepartureDateTime>2024-09-19T09:13:39.4715098+00:00</SchedDepartureDateTime>
  <SchedDepartureDateTimeUTC>2024-09-19T09:13:39.4715098+00:00</SchedDepartureDateTimeUTC>
  <StatusCode>sample string 3</StatusCode>
  <StatusDescription>sample string 4</StatusDescription>
</FlightStatusResp>