v1

latestOpenAPI 3.0.0Cabify Api support2026-07-264588127.9 KB
parcels

Get proof of delivery configuration for a parcel.

Returns the proof of delivery methods currently configured for the specified parcel.

get/v1/parcels/{parcel_id}/proof_configuration

Path parameters

parcel_idstring uuid required

UUID of the parcel whose proof of delivery configuration you want to retrieve.

Response

Proof of delivery configuration retrieved successfully.

parcel_idstring uuid required

UUID of the parcel this configuration applies to.

Example response

{
  "parcel_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
  "delivered_proofs": {
    "code_proof": {
      "active": true,
      "code": "1234",
      "hashed_code": "6eef362598bc0d76139d3c4df61347a7faad5fa0a535347e46420214c68558a7"
    },
    "ic_proof": {
      "active": true
    },
    "photo_proof": {
      "active": true
    },
    "comment_proof": {
      "active": true
    }
  }
}