Routes
Get route between two systems
Calculate the systems between the given origin and destination.
post/route/{origin_system_id}/{destination_system_id}
Path parameters
origin_system_idinteger required
Example:30000001
Origin system
destination_system_idinteger required
Example:30000001
Destination system
Headers
Accept-Language'en' | 'de' | 'fr' | 'ja' | 'ru' | 'zh' | 'ko' | 'es'
The language to use for the response.
If-None-Matchstring
The ETag of the previous request. A 304 will be returned if this matches the current ETag.
X-Compatibility-Date'2025-12-16' date required
The compatibility date for the request.
X-Tenantstring
The tenant ID for the request.
Request body
Example request
{
"avoid_systems": [
30000001
],
"connections": [
{
"from": 30000001,
"to": 30000001
}
]
}Response
OK
Example response
{
"route": [
30000001
]
}