v1
latestOpenAPI 3.0.0Proprietary2026-08-06130577659.7 KBCreate repeat order.
This endpoint allows you to create a repeating order. To create a repeating order you need to provide an order object and scheduling information. The created order will be repeated according to the scheduling configuration provided.
Recurring orders in geoCapture are tasks scheduled to happen at regular intervals, like weekly, monthly, or annually. They are designed for repetitive tasks that need to be done routinely, such as regular maintenance checks or recurring deliveries. To illustrate, a recurring order could be set up for weekly landscape maintenance at a specific location, meaning that the task is automatically scheduled at the designated frequency without needing to create a new order every time. This function streamlines ongoing task management, boosting efficiency and maintaining consistency in operations.
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",
"schedulerStartDate": "2015-02-20",
"schedulerEndDate": "2015-02-20"
}
}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",
"schedulerStartDate": "2015-02-20",
"schedulerEndDate": "2015-02-20"
}
}