ReDoc documentation
Download OpenAPI specification:Download
The Resources API provides the resources necessary to create a planning.
The ping
-endpoint can be used for validating a connection with the application. It will authenticate the caller and respond pong
if everything is set-up correctly.
Returned when the application is responsive and you are authenticated.
Authentication required
pong
Endpoints used for managing the general information regarding your Employees
. These endpoints are meant for managing Employees
whose role is relevant
for the functionality in Resource Management, ie: typically only those Employees
capable of operating TransportResources
.
Create or update an Employee
. A unique ID (business_id
) is required to identify the Employee
. Calling this endpoint with an existing business_id
will update the Employee
.
Modifying (or retrieving) an Employee
will provide the caller with a version number for this Employee
. This version can be passed to the upsert endpoint
as a weak ETag in the If-Match
header. This allows the caller to ensure that the Employee
has not been modified since the last time it was retrieved.
Prefer | Array of strings The RFC7240 Prefer header indicates that a particular server behavior is preferred by the client but is not required for successful completion of the request (see RFC 7240). The following behavior (see Examples) is supported by this API:
Indicate no response is needed, can be omitted return=minimalRequest the result of the operation as response return=representation |
If-Match | string Weak Etag used for optimistic locking. Example: W/"24" |
Employee created or updated
Employee created or updated
Bad request
Not found
Conflict
This status is returned when an entity is updated with an outdated version in the If-Match header.
{- "name": {
- "first_name": "Jan",
- "last_name": "Van den Berghe"
}, - "driver_skills": [
- "digital side mirrors",
- "driving license D"
], - "skills": [
- "Dutch",
- "English"
], - "start_location": {
- "name": "Conundra",
- "address_line": "Voordries 41b",
- "city": "Oosterzele",
- "zip_code": "9860",
- "country_code": "BE",
- "geo_point": {
- "latitude": 50.9514048,
- "longitude": 3.8067878
}
}, - "home_base": {
- "business_id": "depot-1"
}, - "linked_resource": "0-ABC-123",
- "wont_do": [
- "big bag"
], - "cost": {
- "per_kilometer": 0.9,
- "per_hour": 46.8,
- "fixed": 213
}, - "labels": [
- "Employee-label-A"
], - "driving_speed_factor": 1.25,
- "custom_data": {
- "shop_manager": "John Smith"
}
}
{- "business_id": "employee-42",
- "name": {
- "first_name": "Jan",
- "last_name": "Van den Berghe"
}, - "driver_skills": [
- "digital side mirrors",
- "driving license D"
], - "skills": [
- "Dutch",
- "English"
], - "start_location": {
- "name": "Conundra",
- "address_line": "Voordries 41b",
- "city": "Oosterzele",
- "zip_code": "9860",
- "country_code": "BE",
- "geo_point": {
- "latitude": 50.9514048,
- "longitude": 3.8067878,
- "resolved": {
- "geocoded": true,
- "address": "Voordries 31 bus B, 9860 Oosterzele",
- "precision": 9
}
}
}, - "home_base": {
- "business_id": "depot-1"
}, - "linked_resource": "0-ABC-123",
- "wont_do": [
- "big bag"
], - "cost": {
- "per_kilometer": 0.9,
- "per_hour": 46.8,
- "fixed": 213
}, - "labels": [
- "Employee-label-A"
], - "driving_speed_factor": 1.25,
- "custom_data": {
- "shop_manager": "John Smith"
}
}
Get an existing Employee, defined by their business_id
.
The Employee
was successfully retrieved. Details are in the response body.
Not found
{- "business_id": "employee-42",
- "name": {
- "first_name": "Jan",
- "last_name": "Van den Berghe"
}, - "driver_skills": [
- "digital side mirrors",
- "driving license D"
], - "skills": [
- "Dutch",
- "English"
], - "start_location": {
- "name": "Conundra",
- "address_line": "Voordries 41b",
- "city": "Oosterzele",
- "zip_code": "9860",
- "country_code": "BE",
- "geo_point": {
- "latitude": 50.9514048,
- "longitude": 3.8067878,
- "resolved": {
- "geocoded": true,
- "address": "Voordries 31 bus B, 9860 Oosterzele",
- "precision": 9
}
}
}, - "home_base": {
- "business_id": "depot-1"
}, - "linked_resource": "0-ABC-123",
- "wont_do": [
- "big bag"
], - "cost": {
- "per_kilometer": 0.9,
- "per_hour": 46.8,
- "fixed": 213
}, - "labels": [
- "Employee-label-A"
], - "driving_speed_factor": 1.25,
- "custom_data": {
- "shop_manager": "John Smith"
}
}
Delete an Employee, defined by their business_id
. Removing an Employee
will remove all related sub-resources.
Note: Deployed ResourceCombinations
(eg: used in a released route in an optimization) will not be removed.
Deletion has succeeded and body is empty. Sub-resources will be removed asynchronously.
Bad request
Not found
This status is returned when an entity is updated with an outdated version in the If-Match header.
{- "title": "Validation exception",
- "detail": "The field contains invalid business formatting.",
- "violations": [
- {
- "field": "path.to.field",
- "message": "Field is required"
}
]
}
ShiftSchedules
can be used to describe the recurring pattern for an Employee
's availability. They do not trigger availabilities themselves, but can be
used to generate availabilities according to this schedule, through the application's user interface.
Providing ShiftSchedules
enables planners to do long-term planning using the Employee Overview in the UI, since this allows us to predict when an Employee
should be available.
Endpoint to create a ShiftSchedule
. An identifier will be generated by the application. This identifier can be retrieved from the Location
header, or
response body (if the Prefer
header is set to return=representation
).
Prefer | Array of strings The RFC7240 Prefer header indicates that a particular server behavior is preferred by the client but is not required for successful completion of the request (see RFC 7240). The following behavior (see Examples) is supported by this API:
Indicate no response is needed, can be omitted return=minimalRequest the result of the operation as response return=representation |
Shift Schedule created
Shift Schedule created
Bad request
A Not Found
is triggered on creation, if the Employee
does not exist.
A conflict occurs when the ShiftSchedule
overlaps with an existing ShiftSchedule
.
Note: Since there is no end date on a ShiftSchedule
, it is only possible to create 1 ShiftSchedule
. Trying to add a second one will always
overlap with the existing one.
{- "name": "Standard 38H",
- "start": {
- "start_date": "2014-08-16",
- "start_week": 1
}, - "templates": [
- {
- "index": 1,
- "shifts": [
- {
- "start": {
- "earliest": {
- "time": "14:45",
- "day": "MONDAY"
}, - "window": "PT3H"
}, - "stop": {
- "latest": {
- "time": "14:45",
- "day": "MONDAY"
}
}, - "duration": {
- "at_least": "PT8H",
- "at_most": "PT12H"
}, - "mandatory": true,
- "start_location": {
- "address": {
- "name": "Conundra",
- "address_line": "Voordries 41b",
- "city": "Oosterzele",
- "zip_code": "9860",
- "country_code": "BE",
- "geo_point": {
- "latitude": 50.9514048,
- "longitude": 3.8067878
}
}, - "home_base": {
- "business_id": "depot-1"
}
}
}
]
}
]
}
{- "id": "f22896d0-ed42-4a14-a935-7a29072bc5ac",
- "name": "Standard 38H",
- "start": {
- "start_date": "2014-08-16",
- "start_week": 1
}, - "templates": [
- {
- "index": 1,
- "shifts": [
- {
- "start": {
- "earliest": {
- "time": "14:45",
- "day": "MONDAY"
}, - "window": "PT3H"
}, - "stop": {
- "latest": {
- "time": "14:45",
- "day": "MONDAY"
}
}, - "duration": {
- "at_least": "PT8H",
- "at_most": "PT12H"
}, - "mandatory": true,
- "start_location": {
- "address": {
- "name": "Conundra",
- "address_line": "Voordries 41b",
- "city": "Oosterzele",
- "zip_code": "9860",
- "country_code": "BE",
- "geo_point": {
- "latitude": 50.9514048,
- "longitude": 3.8067878,
- "resolved": {
- "geocoded": true,
- "address": "Voordries 31 bus B, 9860 Oosterzele",
- "precision": 9
}
}
}, - "home_base": {
- "business_id": "depot-1"
}
}
}
]
}
]
}
Retrieve all ShiftSchedules
for a given Employee
, identified by their business id.
Known ShiftSchedules
for the Employee
. List may be empty if no ShiftSchedules
were found.
A Not Found
is triggered on retrieval, if the Employee
does not exist.
[- {
- "id": "f22896d0-ed42-4a14-a935-7a29072bc5ac",
- "name": "Standard 38H",
- "start": {
- "start_date": "2014-08-16",
- "start_week": 1
}, - "templates": [
- {
- "index": 1,
- "shifts": [
- {
- "start": {
- "earliest": {
- "time": "14:45",
- "day": "MONDAY"
}, - "window": "PT3H"
}, - "stop": {
- "latest": {
- "time": "14:45",
- "day": "MONDAY"
}
}, - "duration": {
- "at_least": "PT8H",
- "at_most": "PT12H"
}, - "mandatory": true,
- "start_location": {
- "address": {
- "name": "Conundra",
- "address_line": "Voordries 41b",
- "city": "Oosterzele",
- "zip_code": "9860",
- "country_code": "BE",
- "geo_point": {
- "latitude": 50.9514048,
- "longitude": 3.8067878,
- "resolved": {
- "geocoded": true,
- "address": "Voordries 31 bus B, 9860 Oosterzele",
- "precision": 9
}
}
}, - "home_base": {
- "business_id": "depot-1"
}
}
}
]
}
], - "version": 42
}
]
Update an existing ShiftSchedule
for an Employee
.
The generated_id
is determined by the application and was returned on creation. A list of existing ShiftSchedules
can be retrieved by using the
getShiftSchedulesByEmployeeId
endpoint.
Prefer | Array of strings The RFC7240 Prefer header indicates that a particular server behavior is preferred by the client but is not required for successful completion of the request (see RFC 7240). The following behavior (see Examples) is supported by this API:
Indicate no response is needed, can be omitted return=minimalRequest the result of the operation as response return=representation |
If-Match | string Weak Etag used for optimistic locking. Example: W/"24" |
Shift Schedule updated
Shift Schedule updated
Bad request
A Not Found
is triggered on retrieval, if either the Employee
or the ShiftSchedule
does not exist.
This status is returned when an entity is updated with an outdated version in the If-Match header.
{- "name": "Standard 38H",
- "start": {
- "start_date": "2014-08-16",
- "start_week": 1
}, - "templates": [
- {
- "index": 1,
- "shifts": [
- {
- "start": {
- "earliest": {
- "time": "14:45",
- "day": "MONDAY"
}, - "window": "PT3H"
}, - "stop": {
- "latest": {
- "time": "14:45",
- "day": "MONDAY"
}
}, - "duration": {
- "at_least": "PT8H",
- "at_most": "PT12H"
}, - "mandatory": true,
- "start_location": {
- "address": {
- "name": "Conundra",
- "address_line": "Voordries 41b",
- "city": "Oosterzele",
- "zip_code": "9860",
- "country_code": "BE",
- "geo_point": {
- "latitude": 50.9514048,
- "longitude": 3.8067878
}
}, - "home_base": {
- "business_id": "depot-1"
}
}
}
]
}
]
}
{- "id": "f22896d0-ed42-4a14-a935-7a29072bc5ac",
- "name": "Standard 38H",
- "start": {
- "start_date": "2014-08-16",
- "start_week": 1
}, - "templates": [
- {
- "index": 1,
- "shifts": [
- {
- "start": {
- "earliest": {
- "time": "14:45",
- "day": "MONDAY"
}, - "window": "PT3H"
}, - "stop": {
- "latest": {
- "time": "14:45",
- "day": "MONDAY"
}
}, - "duration": {
- "at_least": "PT8H",
- "at_most": "PT12H"
}, - "mandatory": true,
- "start_location": {
- "address": {
- "name": "Conundra",
- "address_line": "Voordries 41b",
- "city": "Oosterzele",
- "zip_code": "9860",
- "country_code": "BE",
- "geo_point": {
- "latitude": 50.9514048,
- "longitude": 3.8067878,
- "resolved": {
- "geocoded": true,
- "address": "Voordries 31 bus B, 9860 Oosterzele",
- "precision": 9
}
}
}, - "home_base": {
- "business_id": "depot-1"
}
}
}
]
}
]
}
Update an existing ShiftSchedule
for an Employee
.
The generated_id
is determined by the application and was returned on creation. A list of existing ShiftSchedules
can be retrieved by using the
getShiftSchedulesByEmployeeId
endpoint.
Deletion has succeeded and body is empty
Not found
This status is returned when an entity is updated with an outdated version in the If-Match header.
{- "title": "Validation exception",
- "detail": "The field contains invalid business formatting."
}
Availabilities
define a specific time range during which an Employee
is available to execute tasks.
These can either be derived from a ShiftSchedule
(via the user interface) or created on an ad-hoc basis.
When an Availability
is created or updated, it triggers a consolidation process that generates a snapshot of the corresponding Employee
at that moment, referred to as an AvailableEmployee
.
This snapshot accounts for relocations (managed through the user interface) and Unavailabilities
, ensuring a single source of truth for the Employee
's status at that point in time.
Any modifications to this AvailableEmployee
snapshot activate an algorithm that evaluates potential ResourceCombinations
involving the Employee
's Availability
.
During this evaluation, potential TransportResources
are assessed.
If the heuristic identifies that a specific ResourceCombination
would enhance the overall solution's fitness, it is either created or updated.
Retrieves all Availabilities
for a single Employee
(identified by their business_id
) within an optional time range.
This endpoint will return any overlapping Availability
, so it is possible for the returned Availability
to have a time range that spills outside
of the provided time range. Overlap is determined for the widest possible range on an Availability, ie:
earliest_startup until (calculated)
latest_stop`.
When providing a time range, it can be open (either from
or until
is provided) or closed (both from
and until
are provided).
Employee
Availabilities
that overlap with the provided time range. This list can be empty. Each item contains the Availability
's version
for
optimistic locking purposes.
Bad request
The Employee
was not found.
[- {
- "id": "f22896d0-ed42-4a14-a935-7a29072bc5ac",
- "employee_id": "employee-42",
- "start_location": {
- "name": "Conundra",
- "address_line": "Voordries 41b",
- "city": "Oosterzele",
- "zip_code": "9860",
- "country_code": "BE",
- "geo_point": {
- "latitude": 50.9514048,
- "longitude": 3.8067878,
- "resolved": {
- "geocoded": true,
- "address": "Voordries 31 bus B, 9860 Oosterzele",
- "precision": 9
}
}
}, - "home_base_id": "a-home-base-id",
- "end_location": {
- "address": {
- "name": "Conundra",
- "address_line": "Voordries 41b",
- "city": "Oosterzele",
- "zip_code": "9860",
- "country_code": "BE",
- "geo_point": {
- "latitude": 50.9514048,
- "longitude": 3.8067878,
- "resolved": {
- "geocoded": true,
- "address": "Voordries 31 bus B, 9860 Oosterzele",
- "precision": 9
}
}
}, - "home_base": {
- "business_id": "depot-1"
}
}, - "earliest_start": "2021-01-01T04:15:30Z",
- "latest_start": "2021-01-01T06:00:00Z",
- "latest_stop": "2021-01-01T16:00:00Z",
- "min_duration": "PT8H",
- "max_duration": "PT12H",
- "mandatory": true,
- "version": 42
}
]
Add an Availability
for an Employee
. An identifier will be generated by the application. This identifier can be retrieved from the Location
header,
or response body (if the Prefer
header is set to return=representation
).
New Availabilities
should not overlap with existing Availabilities
.
Prefer | Array of strings The RFC7240 Prefer header indicates that a particular server behavior is preferred by the client but is not required for successful completion of the request (see RFC 7240). The following behavior (see Examples) is supported by this API:
Indicate no response is needed, can be omitted return=minimalRequest the result of the operation as response return=representation |
Availability created.
Availability created
Bad request
Not found
A conflict occurs when the Availability
overlaps with an existing Availability
. There should be no overlap between availabilities, since this could
lead to overlapping deployments of the same Employee
.
{- "start_location": {
- "name": "Conundra",
- "address_line": "Voordries 41b",
- "city": "Oosterzele",
- "zip_code": "9860",
- "country_code": "BE",
- "geo_point": {
- "latitude": 50.9514048,
- "longitude": 3.8067878
}
}, - "home_base_id": "a-home-base-id",
- "end_location": {
- "address": {
- "name": "Conundra",
- "address_line": "Voordries 41b",
- "city": "Oosterzele",
- "zip_code": "9860",
- "country_code": "BE",
- "geo_point": {
- "latitude": 50.9514048,
- "longitude": 3.8067878
}
}, - "home_base": {
- "business_id": "depot-1"
}
}, - "earliest_start": "2021-01-01T04:15:30Z",
- "latest_start": "2021-01-01T06:00:00Z",
- "latest_stop": "2021-01-01T16:00:00Z",
- "min_duration": "PT8H",
- "max_duration": "PT12H",
- "mandatory": true
}
{- "id": "f22896d0-ed42-4a14-a935-7a29072bc5ac",
- "employee_id": "employee-42",
- "start_location": {
- "name": "Conundra",
- "address_line": "Voordries 41b",
- "city": "Oosterzele",
- "zip_code": "9860",
- "country_code": "BE",
- "geo_point": {
- "latitude": 50.9514048,
- "longitude": 3.8067878,
- "resolved": {
- "geocoded": true,
- "address": "Voordries 31 bus B, 9860 Oosterzele",
- "precision": 9
}
}
}, - "home_base_id": "a-home-base-id",
- "end_location": {
- "address": {
- "name": "Conundra",
- "address_line": "Voordries 41b",
- "city": "Oosterzele",
- "zip_code": "9860",
- "country_code": "BE",
- "geo_point": {
- "latitude": 50.9514048,
- "longitude": 3.8067878,
- "resolved": {
- "geocoded": true,
- "address": "Voordries 31 bus B, 9860 Oosterzele",
- "precision": 9
}
}
}, - "home_base": {
- "business_id": "depot-1"
}
}, - "earliest_start": "2021-01-01T04:15:30Z",
- "latest_start": "2021-01-01T06:00:00Z",
- "latest_stop": "2021-01-01T16:00:00Z",
- "min_duration": "PT8H",
- "max_duration": "PT12H",
- "mandatory": true
}
Delete all existing Employee
Availabilities
that overlap using an open or closed a time range. Overlap is determined for the widest possible range on
an Availability, ie:
earliest_startup until (calculated)
latest_stop`.
Note: Any overlapping Availabilities will be removed, an
Availability` can be partially outside of the provided time range.
Deletion has succeeded and body is empty
Bad request
Not found
{- "title": "Validation exception",
- "detail": "The field contains invalid business formatting.",
- "violations": [
- {
- "field": "path.to.field",
- "message": "Field is required"
}
]
}
Retrieve an existing Availability
, identified by its generated_id
, for an Employee
, identified by their business_id
.
Employee Availability is retrieved
No Availability
found with this generated_id
for the specified Employee
.
{- "id": "f22896d0-ed42-4a14-a935-7a29072bc5ac",
- "employee_id": "employee-42",
- "start_location": {
- "name": "Conundra",
- "address_line": "Voordries 41b",
- "city": "Oosterzele",
- "zip_code": "9860",
- "country_code": "BE",
- "geo_point": {
- "latitude": 50.9514048,
- "longitude": 3.8067878,
- "resolved": {
- "geocoded": true,
- "address": "Voordries 31 bus B, 9860 Oosterzele",
- "precision": 9
}
}
}, - "home_base_id": "a-home-base-id",
- "end_location": {
- "address": {
- "name": "Conundra",
- "address_line": "Voordries 41b",
- "city": "Oosterzele",
- "zip_code": "9860",
- "country_code": "BE",
- "geo_point": {
- "latitude": 50.9514048,
- "longitude": 3.8067878,
- "resolved": {
- "geocoded": true,
- "address": "Voordries 31 bus B, 9860 Oosterzele",
- "precision": 9
}
}
}, - "home_base": {
- "business_id": "depot-1"
}
}, - "earliest_start": "2021-01-01T04:15:30Z",
- "latest_start": "2021-01-01T06:00:00Z",
- "latest_stop": "2021-01-01T16:00:00Z",
- "min_duration": "PT8H",
- "max_duration": "PT12H",
- "mandatory": true
}
Update a specific Availability
, identified by its generated_id
, for an Employee
, identified by their business_id
. The updated Availability
should
not overlap with existing Availabilities
.
Prefer | Array of strings The RFC7240 Prefer header indicates that a particular server behavior is preferred by the client but is not required for successful completion of the request (see RFC 7240). The following behavior (see Examples) is supported by this API:
Indicate no response is needed, can be omitted return=minimalRequest the result of the operation as response return=representation |
If-Match | string Weak Etag used for optimistic locking. Example: W/"24" |
Availability updated.
Availability updated.
Bad request
Not found
This status is returned when an entity is updated with an outdated version in the If-Match header.
{- "start_location": {
- "name": "Conundra",
- "address_line": "Voordries 41b",
- "city": "Oosterzele",
- "zip_code": "9860",
- "country_code": "BE",
- "geo_point": {
- "latitude": 50.9514048,
- "longitude": 3.8067878
}
}, - "home_base_id": "a-home-base-id",
- "end_location": {
- "address": {
- "name": "Conundra",
- "address_line": "Voordries 41b",
- "city": "Oosterzele",
- "zip_code": "9860",
- "country_code": "BE",
- "geo_point": {
- "latitude": 50.9514048,
- "longitude": 3.8067878
}
}, - "home_base": {
- "business_id": "depot-1"
}
}, - "earliest_start": "2021-01-01T04:15:30Z",
- "latest_start": "2021-01-01T06:00:00Z",
- "latest_stop": "2021-01-01T16:00:00Z",
- "min_duration": "PT8H",
- "max_duration": "PT12H",
- "mandatory": true
}
{- "id": "f22896d0-ed42-4a14-a935-7a29072bc5ac",
- "employee_id": "employee-42",
- "start_location": {
- "name": "Conundra",
- "address_line": "Voordries 41b",
- "city": "Oosterzele",
- "zip_code": "9860",
- "country_code": "BE",
- "geo_point": {
- "latitude": 50.9514048,
- "longitude": 3.8067878,
- "resolved": {
- "geocoded": true,
- "address": "Voordries 31 bus B, 9860 Oosterzele",
- "precision": 9
}
}
}, - "home_base_id": "a-home-base-id",
- "end_location": {
- "address": {
- "name": "Conundra",
- "address_line": "Voordries 41b",
- "city": "Oosterzele",
- "zip_code": "9860",
- "country_code": "BE",
- "geo_point": {
- "latitude": 50.9514048,
- "longitude": 3.8067878,
- "resolved": {
- "geocoded": true,
- "address": "Voordries 31 bus B, 9860 Oosterzele",
- "precision": 9
}
}
}, - "home_base": {
- "business_id": "depot-1"
}
}, - "earliest_start": "2021-01-01T04:15:30Z",
- "latest_start": "2021-01-01T06:00:00Z",
- "latest_stop": "2021-01-01T16:00:00Z",
- "min_duration": "PT8H",
- "max_duration": "PT12H",
- "mandatory": true
}
Delete an existing Availability
, identified by its generated_id
, for an Employee
, identified by their business_id
. This will remove a ResourceCombination
tied to this Availability
if it was not deployed by releasing a route in an optimization.
Deletion has succeeded and body is empty
Not found
This status is returned when an entity is updated with an outdated version in the If-Match header.
{- "title": "Validation exception",
- "detail": "The field contains invalid business formatting."
}
Endpoints used for managing the general information regarding your Transport Resources
.
These can be Trucks
, Trailers
and Tractors
.
Upsert a single TransportResource
.
As a TransportResource
is considered to be always available unless a TransportResourceUnavailability
says otherwise, its presence will result in the
application trying to create ResourceCombinations
by matching AvailableEmployees
with this TransportResource
.
Prefer | Array of strings The RFC7240 Prefer header indicates that a particular server behavior is preferred by the client but is not required for successful completion of the request (see RFC 7240). The following behavior (see Examples) is supported by this API:
Indicate no response is needed, can be omitted return=minimalRequest the result of the operation as response return=representation |
If-Match | string Weak Etag used for optimistic locking. Example: W/"24" |
Transport Resource created or updated
Transport Resource created or updated
Bad request
Not found
This status is returned when an entity is updated with an outdated version in the If-Match header.
{- "type": "TRACTOR",
- "license_plate": "1-ABC-987",
- "requirements": [
- "driving license CE"
], - "capabilities": [
- "big bag"
], - "required_capabilities": [
- "cooling compressor"
], - "skilled_capabilities": [
- "sideloading"
], - "cant_do": [
- "adr-transport"
], - "capacities": [
- {
- "type": "volume",
- "value": 20.02
}
], - "linked_resource": "trailer-1",
- "start_location": {
- "name": "Conundra",
- "address_line": "Voordries 41b",
- "city": "Oosterzele",
- "zip_code": "9860",
- "country_code": "BE",
- "geo_point": {
- "latitude": 50.9514048,
- "longitude": 3.8067878
}
}, - "home_base": {
- "business_id": "depot-1"
}, - "reference": "fleet-reference-47",
- "custom_data": {
- "shop_manager": "John Smith"
}, - "labels": [
- "Transport-resource-label-A"
], - "inactive": false,
- "cost": {
- "per_kilometer": 0.9,
- "per_hour": 46.8,
- "fixed": 213
}, - "characteristics": {
- "maximum_allowed_weight": 3500
}
}
{- "business_id": "tractor-1",
- "type": "TRACTOR",
- "license_plate": "1-ABC-987",
- "requirements": [
- "driving license CE"
], - "capabilities": [
- "big bag"
], - "required_capabilities": [
- "cooling compressor"
], - "skilled_capabilities": [
- "sideloading"
], - "cant_do": [
- "adr-transport"
], - "capacities": [
- {
- "type": "volume",
- "value": 20.02
}
], - "linked_resource": "trailer-1",
- "start_location": {
- "name": "Conundra",
- "address_line": "Voordries 41b",
- "city": "Oosterzele",
- "zip_code": "9860",
- "country_code": "BE",
- "geo_point": {
- "latitude": 50.9514048,
- "longitude": 3.8067878,
- "resolved": {
- "geocoded": true,
- "address": "Voordries 31 bus B, 9860 Oosterzele",
- "precision": 9
}
}
}, - "home_base": {
- "business_id": "depot-1"
}, - "reference": "fleet-reference-47",
- "custom_data": {
- "shop_manager": "John Smith"
}, - "labels": [
- "Transport-resource-label-A"
], - "inactive": false,
- "cost": {
- "per_kilometer": 0.9,
- "per_hour": 46.8,
- "fixed": 213
}, - "characteristics": {
- "maximum_allowed_weight": 3500
}
}
Get an existing TransportResource
Transport Resource is retrieved
Not found
{- "business_id": "tractor-1",
- "type": "TRACTOR",
- "license_plate": "1-ABC-987",
- "requirements": [
- "driving license CE"
], - "capabilities": [
- "big bag"
], - "required_capabilities": [
- "cooling compressor"
], - "skilled_capabilities": [
- "sideloading"
], - "cant_do": [
- "adr-transport"
], - "capacities": [
- {
- "type": "volume",
- "value": 20.02
}
], - "linked_resource": "trailer-1",
- "start_location": {
- "name": "Conundra",
- "address_line": "Voordries 41b",
- "city": "Oosterzele",
- "zip_code": "9860",
- "country_code": "BE",
- "geo_point": {
- "latitude": 50.9514048,
- "longitude": 3.8067878,
- "resolved": {
- "geocoded": true,
- "address": "Voordries 31 bus B, 9860 Oosterzele",
- "precision": 9
}
}
}, - "home_base": {
- "business_id": "depot-1"
}, - "reference": "fleet-reference-47",
- "custom_data": {
- "shop_manager": "John Smith"
}, - "labels": [
- "Transport-resource-label-A"
], - "inactive": false,
- "cost": {
- "per_kilometer": 0.9,
- "per_hour": 46.8,
- "fixed": 213
}, - "characteristics": {
- "maximum_allowed_weight": 3500
}
}
Delete an existing TransportResource
.
Upon deleting, the application will also remove ResourceCombinations using this TransportResource and try to find replacements. All unavailabilities and relocations related to this TransportResource will be removed as well.
Deletion has succeeded and body is empty
Bad request
Not found
This status is returned when an entity is updated with an outdated version in the If-Match header.
{- "title": "Validation exception",
- "detail": "The field contains invalid business formatting.",
- "violations": [
- {
- "field": "path.to.field",
- "message": "Field is required"
}
]
}
A Home Base
is a reusable address that is used to specify the location of Employees
or Transport Resources
.
Instead of specifying a full address for each of these, the user can create a single reusable HomeBase
and assign it to all.
Updates to an assigned HomeBase
are propagated to all future resources using it.
Upsert a single HomeBase
. Once it is created Employees
and Transport Resources
can make use of it.
HomeBase created or updated
HomeBase created or updated
Bad request
This status is returned when an entity is updated with an outdated version in the If-Match header.
{- "name": "Ghent - Headquarters",
- "address": {
- "address_line": "Voordries 41b",
- "city": "Oosterzele",
- "zip_code": "9860",
- "country_code": "BE",
- "geo_point": {
- "latitude": 50.9514048,
- "longitude": 3.8067878
}
}, - "plan_group": "cargo planning"
}
{- "name": "Ghent - Headquarters",
- "address": {
- "address_line": "Voordries 41b",
- "city": "Oosterzele",
- "zip_code": "9860",
- "country_code": "BE",
- "geo_point": {
- "latitude": 50.9514048,
- "longitude": 3.8067878,
- "resolved": {
- "geocoded": true,
- "address": "Voordries 31 bus B, 9860 Oosterzele",
- "precision": 9
}
}
}, - "plan_group": "cargo planning"
}
Get a single HomeBase
.
HomeBase retrieved
Bad request
Not found
{- "name": "Ghent - Headquarters",
- "address": {
- "address_line": "Voordries 41b",
- "city": "Oosterzele",
- "zip_code": "9860",
- "country_code": "BE",
- "geo_point": {
- "latitude": 50.9514048,
- "longitude": 3.8067878,
- "resolved": {
- "geocoded": true,
- "address": "Voordries 31 bus B, 9860 Oosterzele",
- "precision": 9
}
}
}, - "plan_group": "cargo planning"
}
Delete a single HomeBase
.
A HomeBase
can only be deleted when there are no resources left referring to it.
HomeBase deleted
Bad request
Conflict
This status is returned when an entity is updated with an outdated version in the If-Match header.
{- "title": "Validation exception",
- "detail": "The field contains invalid business formatting.",
- "violations": [
- {
- "field": "path.to.field",
- "message": "Field is required"
}
]
}
A forecast is the expected the number of shifts that will be required on the given day and location. They is used in the context of capacity planning: a difference in the forecast and the available shifts can indicate ue in the planning. The provided forecasts are only used to show to the end user and are not taken into account for any of the calculations made by the application.
Upsert a single Forecast
Prefer | Array of strings The RFC7240 Prefer header indicates that a particular server behavior is preferred by the client but is not required for successful completion of the request (see RFC 7240). The following behavior (see Examples) is supported by this API:
Indicate no response is needed, can be omitted return=minimalRequest the result of the operation as response return=representation |
Forecast created or updated
Forecast created or updated
Bad request
{- "expected_shifts": 27
}
{- "expected_shifts": 27,
- "location": "Ghent",
- "date": "2023-10-01"
}
Delete a single Forecast
.
Forecast deleted
Bad request
{- "title": "Validation exception",
- "detail": "The field contains invalid business formatting.",
- "violations": [
- {
- "field": "path.to.field",
- "message": "Field is required"
}
]
}