v1

latestOpenAPI 3.0.0Proprietary2026-08-06130577659.7 KB
Disposition|Tour

Fetch tour details.

This endpoint is able to provide you with details of a tour like detailed information for all stops and associated tour costs. In addition to that you will recieve the teamHeadEmployee and the executing employee. You recieve the id of a tour from the list tour endpoint.

The Sub-Stop function in tour planning allows for the division of a single work stop among multiple teams, ensuring efficient task allocation for larger jobs. It involves assigning specific time durations to different teams for a shared job, based on the total estimated time required for the stop. If a stop with substops is removed, all substops are also removed.

get/tour/fetch_data

Query parameters

idinteger required

The internal id of the tour. This Parameter is required.

Response

Success Response:

Example response

{
  "data": {
    "startDate": "2015-02-20",
    "stops": [
      {
        "latLng": [
          52.38127828631681,
          7.594243214018696
        ],
        "eta": "2015-02-20T12:59:21+01:00",
        "etd": "2015-02-20T12:59:21+01:00",
        "ata": "2015-02-20T12:59:21+01:00",
        "atd": "2015-02-20T12:59:21+01:00",
        "orders": [
          {
            "createdAt": "2015-02-20T12:59:21+01:00"
          }
        ]
      }
    ],
    "startTime": "2015-02-20T12:59:21+01:00",
    "endTime": "2015-02-20T12:59:21+01:00",
    "costs": {
      "dates": [
        {
          "date": "2015-02-20"
        }
      ]
    }
  }
}