Creates a locker reservation for a return or asset drop-off. Use this endpoint when the depositor needs to place a package or asset into a locker for pickup by a courier, or operations team. The reservation details include the intended receiving contact (e.g., store or department) and the depositor contact (e.g., customer or recipient) who will drop off the package or asset. Once the reservation is created, the depositor can use the provided locker unit information to complete the return drop-off, and the receiving contact can retrieve the item from the locker for processing.
Return reservation details, including the intended receiving contact and the depositor contact who will drop off the package or asset.
The identifier of the user performing the reservation action.
The size of the locker unit required for the return or asset drop-off.
The identifier of the contact or department that will receive the returned package or asset.
The type of contact that will receive the returned package or asset.
The identifier of the person or contact in the address book who will deposit the returned package or asset into the locker.
The type of contact who will deposit the returned package or asset.
The primary tracking number or identifier for the returned package or asset.
The secondary tracking number or additional identifier for the returned package or asset.
- Sandbox Serverhttps://api-sandbox.sendpro360.pitneybowes.com/parcelpoint/api/v1/lockerBanks/{lockerBankId}/lockers/asset/reserve
- Production Server (uses live data)https://api.sendpro360.pitneybowes.com/parcelpoint/api/v1/lockerBanks/{lockerBankId}/lockers/asset/reserve
curl -i -X POST \
https://api-sandbox.sendpro360.pitneybowes.com/parcelpoint/api/v1/lockerBanks/AOne/lockers/asset/reserve \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"userId": "user@gmail.com",
"size": "small",
"accessible": true,
"contactId": "684a6b7bbc85e1bce739xxxx",
"contactType": "recipient",
"depositorContactId": "684a6b7bbc85e1bxxxxxxxxx",
"depositorContactType": "recipient",
"trackingNumber": "TrackigID137",
"secondaryTrackingNumber": "TRACK-1234",
"reservationExpiryTime": "2027-12-01T00:00:00Z"
}'Return reservation created successfully.
The identifier of the contact or department that will receive the returned package or asset.
The type of contact that will receive the returned package or asset.
The identifier of the person or contact in the address book who will deposit the returned package or asset .
The type of contact who will deposit the returned package or asset.
The access code given to the depositor to open the locker and drop off the package or asset.
The primary tracking number or identifier for the returned package or asset.
{ "lockerBankId": "AOne", "lockerUnitId": "2", "size": "small", "contactId": "684a6b7bbc85e1bce739xxxx", "contactType": "recipient", "depositorContactId": "684a6b7bbc85e1bxxxxxxxxx", "depositorContactType": "recipient", "depositorAccessCode": "NR8PBW", "trackingNumber": "TrackigID137", "reservationExpiryTime": "2027-12-01T00:00:00Z" }