get
/api/v1/bookingsList bookings
BookingsBearer API keyavisator:bookings:read
Schema details
Parameters
[
{
"in": "query",
"name": "status",
"schema": {
"enum": [
"pending",
"approved",
"rejected",
"cancelled",
"arrived",
"in_progress",
"completed",
"no_show"
],
"type": "string"
}
},
{
"in": "query",
"name": "date_from",
"schema": {
"format": "date",
"type": "string"
}
},
{
"in": "query",
"name": "date_to",
"schema": {
"format": "date",
"type": "string"
}
},
{
"in": "query",
"name": "supplier_id",
"schema": {
"type": "string"
}
},
{
"in": "query",
"name": "dock_id",
"schema": {
"type": "string"
}
},
{
"in": "query",
"name": "location_id",
"schema": {
"type": "string"
}
},
{
"in": "query",
"name": "page",
"schema": {
"default": 1,
"type": "integer"
}
},
{
"in": "query",
"name": "per_page",
"schema": {
"default": 50,
"type": "integer"
}
}
]Responses
{
"200": {
"description": "Success"
},
"401": {
"description": "Unauthorized - missing or invalid API key"
},
"403": {
"description": "Forbidden - missing required scope"
},
"429": {
"description": "Rate limit exceeded"
},
"500": {
"description": "Internal server error"
}
}