Get proof of delivery responses

Get proof of delivery responses:

Status Meaning Description
200 OK Returns an Order’s proof of delivery information.
404 Not Found Returns an error indicating that the order can’t be found in Shippit.
422 Unprocessable Entity Returns an error indicating that the order isn’t booked in Shippit, so there is no proof of delivery.

To perform this operation, you must authenticate with an authentication token.

Example responses

{
  "response": {
    "tracking_number": "PPKFqy44U8Nff",
    "delivery_proofs": {
      "parcelWithPODLabelNumber": [
        {
          "url": "https://delivery-proof-dev.s3.ap-southeast-2.amazonaws.com/image.jpeg",
          "type": "PHOTO",
          "expires_on": "2025-12-31T21:00:00.000"
        },
      ],
      "parcelNoPODLabelNumber": []
    }
  }
}

Returns an error indicating that the order can’t be found in Shippit

{
  "error": "order_not_found",
  "error_description": "The requested order could not be found."
}

Returns an error indicating that the order isn’t booked in Shippit

{
  "error": "order_not_booked",
  "error_description": "The requested order has not been booked in Shippit."
}