Request allows you to report arrival of a vehicle for unloading in selected transportation order. You can confirm arrival together with the order unloading confirmation or skip this step.
It is available for sent and received orders for Shippers and Carriers.
The order-id identification number in method call can be taken from response after creating the order or by downloading the order list.
POST
/ext/orders-api/v1/orders-created/{order-id}/arrived
Request Authorization
Every request MUST include a valid access token obtained during the user authorization process, provided using the Bearer token scheme in the Authorization header.
Successful Response
Error Response
Request Header
POST /ext/orders-api/v1/orders-created/{order-id}/arrived HTTP/1.1
Host: api.platform.trans.eu
Content-Type: application/json
Accept: application/json
Authorization: Bearer {access_token)
Api-key: {unique_app_api-key}Request Parameters
| Attribute | Type | Example | Mandatory | Description |
| arrived_at | String | “2025–10-22T11:00:00+0100” | Yes | Date and time of arrival to unloading point. If a future time is specified, the current time will be recorded instead. |
| complete_date | String | “2025–10-22T11:30:00+0100” | No | Date and time of complete unloading of the transport. If a future time is specified, the current time will be recorded instead. |
Example Request Body
{
"arrived_at": "2025-10-22T11:00:00+0100",
"complete_date": "2025-10-22T11:30:00+0100" // not mandatory
}Successful Response
204 No ContentClient errors (code 400)
HTTP 4xx status codes indicate client errors, meaning that the request could not be processed due to an issue on the client side. Below is a list of request-specific errors.
Example error 1
Order does not exists
{
"detail": "Entity not found",
"status": 404,
"title": "Not Found",
"type": "http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html"
}Example error 2
No arrival date
{
"arrival_date": {
"isDefined": "arrival_date should not be null or undefined",
"isIso8601": "arrival_date must be a valid ISO 8601 date string"
}
}Example error 3
Attempt to report the arrival date after completing the order
{
"error": "Unprocessable Entity",
"message": "transportId: 20a931e4-b43c-4bd1-958f-ab2c2e386299: Complete date cannot be before arrival date.",
"status_code": 422
}