This request will send the Freight Order results (including label and tracking numbers) upon completion to the webhook endpoint attached to the used token. The results will be sent to the webhook endpoint 4 times with 5 minute intervals just in case if the first time was not successful.
| Method | URI | Headers |
|---|---|---|
| POST | freight-orders/ship |
default |
{
"rate_id": 12345678
}
Successful
{
"success": true,
"data": {
"shipment_order_id": 863100211
},
"message": "Operation successful! We will send the shipment details to your webhook address as soon as it is ready"
}
Failed
{
"success": false,
"message": "The given data was invalid."
}
{
"shipment_order_id": 123123123,
"bol_number": "123123123",
"pro_number": "132123",
"final_price": "11.11",
"carrier": "amazon_freight",
"service": "Amazon Freight",
"label": "/label/url/12355",
"confirmed_pickup_window_start": "08:00",
"confirmed_pickup_window_end": "10:00"
}