Webservice to get service schedule.
| Name | Type | Required | Description |
|---|---|---|---|
| user | Header param | Y | Your API username. Please note this is not the same as your web username. |
| password | Header param | Y | Your API password. Please note this is not the same as your web password. |
| customerId | Header param | Y | Your API customerId. |
| Body | Body | N | Not required. |
| origin | Query param | Y | Origin FA Station code. |
| destination | Query param | Y | Destination FA Station code. |
Response will contain array of service schedule.
| Name | Type | Required | Description |
|---|---|---|---|
| origin | String | Y | origin FA station code. |
| destination | String | Y | destination FA station code. |
| transitDays | String | Y | No of days for transit |
| cutoffTime | String | Y | Cut off Time. |
| cutoffTimeZoneCode | String | Y | Cut off Time Zone Code. |
| availableTime | String | Y | Available Time. |
| availableTimeZoneCode | String | Y | Available Time Zone Code. |
| shipDayOne | String | Y | First Shipment Day. |
| shipDayTwo | String | Y | Second Shipment Day. |
| shipDayThree | String | Y | Third Shipment Day. |
| shipDayFour | String | Y | Fourth Shipment Day. |
| shipDayFive | String | Y | Fifth Shipment Day. |
| shipDaySix | String | Y | Sixth Shipment Day. |
| shipDaySeven | String | Y | Seventh Shipment Day. |
| recoveryDayOne | String | Y | Recovery for shipment day one. |
| recoveryDayTwo | String | Y | Recovery for shipment day two. |
| recoveryDayThree | String | Y | Recovery for shipment day three. |
| recoveryDayFour | String | Y | Recovery for shipment day four. |
| recoveryDayFive | String | Y | Recovery for shipment day five. |
| recoveryDaySix | String | Y | Recovery for shipment day six. |
| recoveryDaySeven | String | Y | Recovery for shipment day seven. |
Array of service schedule.
[
{
"origin": "DFW",
"destination": "ATL",
"transitDays": "2",
"cutoffTime": "20:00",
"cutoffTimeZoneCode": "CT",
"availableTime": "08:00",
"availableTimeZoneCode": "ET",
"shipDayOne": "Mon",
"shipDayTwo": "Tue",
"shipDayThree": "Wed",
"shipDayFour": "Thu",
"shipDayFive": "Fri",
"shipDaySix": "",
"shipDaySeven": "",
"recoveryDayOne": "Wed",
"recoveryDayTwo": "Thu",
"recoveryDayThree": "Fri",
"recoveryDayFour": "Mon",
"recoveryDayFive": "Mon",
"recoveryDaySix": "",
"recoveryDaySeven": ""
}
]