Get Trip Manifest

Overview

Service Unique Name GetTripManifestDetails
Request Method GET

Description

API to get the trip manifest details of the waybill which is In Transit.

Request Header

AccessKey : logixerp

Request Body

These is form parameters:

  • Trip Manifest waybill number: Logix Platform waybill number with current status In Transit.

Request Details

Parameter Data Type Required/Optional Description
SecureKey int Required It is a Unique key for accessing the API. For secure key email to support team.
waybillNumber String Required Trip Manifest waybill number: Logix Platform waybill number with current status In Transit.

Response Format

ON SUCCESS
{
"message": "Data found",
"messageType": "Success",
"tripManifestList": {
"message": "Data found",
"messageType": "Success",
"tripManifestList": [
{
"creationDateString": "2021-03-22 20:27:00",
"fromOperatingUnit": {
"name": "yed Hub"
},
"number": "TM/ZAYEDHUB/2021/1287",
"toOperatingUnit": {
"name": "Sorting Hub"
},
"vehicleNumber": "CAI"
},
{
"creationDateString": "2021-03-16 19:23:00",
"fromOperatingUnit": {
"name": "ouha Hub"
},
"number": "TM/ALXSMO/2021/1330",
"toOperatingUnit": {
"name": "Sorting Hub"
},
"vehicleNumber": "CAIALX"
}
]
}

ON ERROR
{
"message": "Waybill not found",
"messageType": "Error"
}

Sample Code

import requests

access_url = "https://api.logixplatform.com/Rachna/webservice/v2/GetTripManifestDetails"
payload = {
'SecureKey':'secure_key',
'waybillNumber':'LUAT123',

}

headers={'AccessKey':'logixerp'}

try:
r = requests.get(access_url, params=payload, headers=headers)
print (r.text)
except requests.exceptions.RequestException as err:
print (err)
please wait...