V6RESTful APIs - Manifests
Manifest consignments
​​
​
This API is to create a new manifest.
​
POST /v6-api/rest/manifests
​
Request payload example below:
​
{
"manifestDate": "2025-10-20",
"departureDate": "2025-10-20",
"departureTime": "12:00",
"estimatedArrivalDate": "2025-10-20",
"estimatedArrivalTime": "12:00",
"fullLoadCategory": "MC",
"halfLoadCategory": "LC",
"fromLocationCode": "TOOWONG",
"fromLocationSuburb": "TOOWONG",
"fromLocationPostcode": "4066",
"fromLocationState": "QLD",
"toLocationCode": "CASTLEH",
"toLocationSuburb": "CASTLE HILL",
"toLocationPostcode": "2154",
"toLocationState": "NSW",
"agent": "APT",
"carrier" : "22",
"vehicle" : "22",
"driver" : "22",
"fromDepot": "QLDD",
"toDepot": "NSWD",
"tripNo": "J8943",
"description": "overnight run",
"manifestedConsignments": ["C28256,C28257,C28258"]
}
​
​
Example response payload:
{"manifestId":12345,"manifestNo":"M12345"}
​
​
​
​
This API is to manifest a list of consignments (to confirm the consignments are ready for despatch)
​​​​
POST /v6-api/rest/manifests/manifestConsignments
Request payload: array of connote reference number as below example:
​
{ "connoteNos":["A","b","c"],"manifestNo":"M123456"}
​
Note : If manifestNo is not supplied then a new manifest is created.
Example response payload:
{"manifestId":1111,"manifestNo":"M12345"}
​
​