This API will either give you a list of all your bookings or all information about a specific booking.
section booking
| Field | Comment |
|---|---|
| customerBookingId | optional: Your unique internal booking ID |
| customerCardId | mandatory: A value that you receive from us together with your credentials. |
| PeriodDate.StartDateUTC PeriodDate.EndDateUTC | option: to limit the response you can add date limitations on the request |
{
"booking": {
"customerBookingId": "test 123",
"customerCardId": "3277e29e-f02f-4634-842e-0adc7b134157"
}
}
Response
{
"booking": {
"customerBookingId": "test 123",
"begomaId": 575115,
"customerCardId": "3277e29e-f02f-4634-842e-0adc7b134157",
"locations": [],
"goodsSpecifications": [
{
"goodsMarks": "Test equipment",
"goodsPhgType": "Boxes",
"goodsLength": 120,
"goodsWidth": 80,
"goodsHeight": 100,
"goodsQty": 1,
"goodsCBM": 0.96,
"goodsLDM": 0.4,
"goodsWeight": 500,
"goodsChgWeight": null
}
],
"references": {
"loadingReference": "Loading 1",
"unloadingReference": "Unloading 1",
"invoiceReference": null
}
}
}