Download OpenAPI specification:Download
The planning API provides information about plannings and their lifecycle.
You can find out more in our developer portal.
GET /planning/v0/releases
GET /planning/v0/plannings/{id}/releases/latest
GET /planning/v0/ping
> Will be kept for convenience as long as there are v0 endpoints available.GET /planning/v0/plannings/{id}/export
> No alternative in v1. No excel export will be created in v1 and onwards. These will be replaced with
alternative endpoints in the future that will fulfill the same needs. GET /planning/v0/plannings
> Although this endpoint will still be available until further notice, we strongly suggest you already migrate to the newer
GET /planning/v1/plannings
. Please contact us, if the newer endpoint does not fulfill your needs.GET /planning/v0/ping
has been superseded by GET /planning/v1/ping
. No changes were made to the API contract.GET /planning/v0/plannings
has been superseded by GET /planning/v1/plannings
. Note that the response body has been changed significantly from the v0 endpoint.GET /planning/v0/releases
has been deprecated in favor of GET /planning/v1/plannings?released_since={date-time}
. The response body contains small changes compared to the v0 endpoint.GET /planning/v0/plannings/{id}/releases/latest
has been deprecated in favor of GET /planning/v1/plannings/{id}/releases/latest
. This introduces the concept of routes with multiple trips. Note that this changes the response body of the endpoint significantly compared to the v0 endpoint.The ping
-endpoint can be used for validating a connection with the application.
It will authenticate the caller and returns a pong
response when everything is set-up correctly.
Everything set-up correctly
Authentication required
pong
Returns a cursor paged list of plannings. Results are sorted by created_at
in descending order.
You can find out more about how to use cursors in our developer portal.
OK
Bad request
Authentication required
{- "plannings": [
- {
- "id": "86b54c9d-21d7-4b37-af3d-25f03886153b",
- "created_at": "2024-11-30T08:15:00Z",
- "released_at": "2024-11-30T10:00:00Z"
}
], - "cursor": {
- "self": "c2VsZl9fcGFnZQ",
- "prev": "cHJldmlvdXNfX3BhZ2U",
- "next": "bmV4dF9fcGFnZQ"
}
}
Retrieves detailed information on the given released planning.
Note that information about releases are only stored for 2 weeks after the release was made. If you try to retrieve a release which is older than 2 weeks, you will get a 404 Not Found response.
OK
Authentication required
Not found
{- "release_metadata": {
- "planning_id": "86b54c9d-21d7-4b37-af3d-25f03886153b",
- "released_at": "2024-11-30T10:00:00Z"
}, - "routes": [
- {
- "id": "d2c6013e-9194-46ac-a44c-855abf1176ca",
- "resource_combination": {
- "id": "5a4e8c43-80c0-4d5b-8f7e-32ec94f25d79",
- "employee": {
- "business_id": "EMP-18",
- "name": "Patrick Simmons",
- "custom_data": {
- "shop_manager": "John Smith"
}
}, - "transport_resources": [
- {
- "business_id": "TR-14",
- "license_plate": "2-QBD-124",
- "custom_data": {
- "shop_manager": "John Smith"
}
}
]
}, - "start": {
- "location": {
- "business_id": "LOC_001",
- "name": "Conundra (Oosterzele)",
- "type": "CUSTOMER",
- "geo_point": {
- "latitude": 50.9514048,
- "longitude": 3.8067878
}, - "address": {
- "address_line": "Voordries 41b",
- "city": "Oosterzele",
- "zip_code": "9860",
- "country_code": "BE"
}
}, - "timings": {
- "arrival_at": "2024-12-01T10:30:00Z",
- "service_time": "PT45M",
- "departure_at": "2024-12-01T11:15:00Z"
}
}, - "end": {
- "location": {
- "business_id": "LOC_001",
- "name": "Conundra (Oosterzele)",
- "type": "CUSTOMER",
- "geo_point": {
- "latitude": 50.9514048,
- "longitude": 3.8067878
}, - "address": {
- "address_line": "Voordries 41b",
- "city": "Oosterzele",
- "zip_code": "9860",
- "country_code": "BE"
}
}, - "timings": {
- "arrival_at": "2024-12-01T10:30:00Z",
- "service_time": "PT45M",
- "departure_at": "2024-12-01T11:15:00Z"
}
}, - "breaks": [
- {
- "at": "2024-12-01T11:15:30Z",
- "duration": "PT45M"
}
], - "trips": [
- {
- "stops": [
- {
- "location": {
- "business_id": null,
- "name": null,
- "type": null,
- "geo_point": null,
- "address": null
}, - "deliveries": [
- null
], - "pickups": [
- null
], - "timings": {
- "arrival_at": null,
- "service_time": null,
- "wait_time": null,
- "departure_at": null
}
}
]
}
]
}
]
}