v1

latestOpenAPI 3.0.0Cabify Api support2026-07-264588127.9 KB
parcels

Set proof of delivery configuration for a parcel.

Creates or replaces the proof of delivery methods configured for the specified parcel.

post/v1/parcels/{parcel_id}/proof_configuration

Path parameters

parcel_idstring uuid required

UUID of the parcel to configure proof of delivery for.

Request body

Example request

{
  "delivered_proofs": {
    "code_proof": {
      "active": true,
      "hashed_code": "6eef362598bc0d76139d3c4df61347a7faad5fa0a535347e46420214c68558a7"
    },
    "ic_proof": {
      "active": true
    },
    "photo_proof": {
      "active": true
    },
    "comment_proof": {
      "active": true
    }
  }
}

Response

Configuration saved 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
    }
  }
}