v1

latestOpenAPI 3.0.0Cabify Api support2026-07-264588127.9 KB
status

Get the state history of a parcel.

Returns the ordered list of state-change events for the specified parcel. Only parcels updated within the last 30 days can be queried.

get/v1/parcels/{parcel_id}/timeline

Path parameters

parcel_idstring uuid required

UUID of the parcel whose history you want to retrieve.

Response

Timeline retrieved successfully.

idstring uuid required

System-generated UUID for this parcel.

external_idstring

Your own identifier for this parcel, as provided when the parcel was created.

Example response

{
  "id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
  "external_id": "parcel_001",
  "timeline": [
    {
      "state_updated_at": "2021-12-02T10:12:07.753Z"
    }
  ]
}