Saltar al contenido principal
Routal
API ReferenceTask

Create a task on a stop

Attaches a task to an existing stop.

POST
/v2/task

Attaches a task to an existing stop. A task is a checklist item the driver ticks during the visit: it carries a label, optional comments, an optional barcode to scan, custom_fields and a status (pending, completed or canceled).

Use tasks when a stop covers several SKUs or sub-operations the driver ticks one by one. Signatures, photos and free-form comments travel in the stop's report instead.

private_key<token>

Pass your API key as the private_key query string parameter. Generate and rotate keys in Developer Settings of your Routal workspace.

Keys stay server-side. Never ship them to a browser or mobile app.

In: query

Query Parameters

stop_id*string

Stop ID

Match^[0-9a-f]{24}

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

application/json

application/json

curl -X POST "https://example.com/v2/task?stop_id=string" \  -H "Content-Type: application/json" \  -d '{}'
{
  "id": "4f75d991ac359f8c4c79d762",
  "stop_id": "4f75d991ac359f8c4c79d762",
  "label": "Deliver refrigerated parcel 1/2",
  "comments": "Keep cold chain. Weight 12.4 kg.",
  "barcode": "8410076472158",
  "status": "completed",
  "custom_fields": {
    "sku": "SKU-4582",
    "quantity": 2,
    "lot_number": "L-2026-038"
  },
  "created_by": "4f75d991ac359f8c4c79d762",
  "created_at": "2026-09-09T07:20:39.190Z",
  "updated_at": "2026-09-09T07:20:39.190Z",
  "deleted_at": "2026-09-09T07:20:39.190Z"
}
{
  "message": "Domain not found",
  "message_id": "highway.domain.error.not_found"
}
Empty
{
  "message": "Domain not found",
  "message_id": "highway.domain.error.not_found"
}
{
  "message": "Domain not found",
  "message_id": "highway.domain.error.not_found"
}
Empty
Empty