Shipping APIs
//
Signature Image ERR
This API provides a downloadable link containing the signature image for a specific ERR (Electronic Return Receipt) shipment. This signature image serves as Proof of Delivery (POD).
What is Proof of Delivery (POD)?
Proof of Delivery is a document or file that acts as evidence of successful shipment delivery. This file contains a digital copy of the recipient's signature, provided as a downloadable link or URL.
Key Considerations:
- It provides the recipient's signature image captured at the time of delivery as proof that the shipment was successfully delivered.
- The API provides the recipient's signature image as Proof of Delivery (POD) to confirm successful shipment delivery.
- A request requires the mandatory
shipmentId. - If a signature is captured by the carrier, the API returns it as a downloadable link of the PDF in the
signatureFileURLfield. - The
signatureFileURLprovided in the API response expires after 60 minutes. - If no signature is available, the API returns an error.
- Signature Image ERR is supported for USPS carrier only.
Security
bearerAuth
- Sandbox Serverhttps://api-sandbox.sendpro360.pitneybowes.com/shipping/api/v1/err/shipments/{shipmentId}/signaturefile
- Production Server (uses live data)https://api.sendpro360.pitneybowes.com/shipping/api/v1/err/shipments/{shipmentId}/signaturefile
- Sandbox Server for Canadahttps://api-ppd.shipping360.pitneybowes.com/ca/shipping/api/v1/err/shipments/{shipmentId}/signaturefile
- Production Server for Canadahttps://api.shipping360.pitneybowes.com/ca/shipping/api/v1/err/shipments/{shipmentId}/signaturefile
curl -i -X GET \
'https://api-sandbox.sendpro360.pitneybowes.com/shipping/api/v1/err/shipments/{shipmentId}/signaturefile' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'X-PB-Developer-Partner-ID: string'Signature image as proof of delivered shipment.
Indicates the shipment identifier, a unique identifier for an individual shipment.
Example:"USPS2200592809609000"
Response
{ "shipmentId": "USPS2200592809609000", "signatureFileURL": "https://api-sandbox.pitneybowes.com/shippingservices/v1/shipments/210000000000000000/sig.jpg" }