v1

latestOpenAPI 3.0.0Proprietary2026-08-06130577659.7 KB
Orders|Order

Create transport order.

This endpoint allows you to create a transport order. In addition to an order object you need to provide a pickupLocation and a deliveryLocation. The locations can be an existing project, referred by an id, or a customProject provided in this request.

In the geoCapture system, transport orders are specific types of orders focused on the movement of maschines from one location to another. Unlike regular orders which might encompass a wide range of tasks like installations, maintenance, or inspections, transport orders are specifically tailored for logistics services.

For example, a transport order in geoCapture could involve delivering an excavator from the depot to the construction site.

post/order/create_transport

Request body

Example request

{
  "order": {
    "orderDate": "2015-02-20T12:59:21+01:00",
    "targetDate": "2015-02-20T12:59:21+01:00",
    "latLng": [
      52.38127828631681,
      7.594243214018696
    ],
    "createdAt": "2015-02-20T12:59:21+01:00"
  },
  "pickupLocation": {
    "customProject": {
      "latLng": [
        52.38127828631681,
        7.594243214018696
      ]
    }
  },
  "deliveryLocation": {
    "customProject": {
      "latLng": [
        52.38127828631681,
        7.594243214018696
      ]
    }
  }
}

Response

Success Response:

Example response

{
  "data": [
    {
      "orderDate": "2015-02-20T12:59:21+01:00",
      "targetDate": "2015-02-20T12:59:21+01:00",
      "latLng": [
        52.38127828631681,
        7.594243214018696
      ],
      "createdAt": "2015-02-20T12:59:21+01:00"
    }
  ]
}