Get recipient details for attended deliveries
Learn how to get recipient details for attended deliveries where someone other than the buyer received the package.
Learn how to get the recipient details for packages delivered to specific individuals other than the intended recipient.
Prerequisites
To complete this tutorial, you need:
- Authorization from the selling partner for whom you are making calls. For more information, refer to Authorizing Selling Partner API Applications.
- The Amazon Fulfillment role assigned to your developer profile.
- The Amazon Fulfillment role selected in the App registration page for your application.
Retrieve recipient details for attended deliveries
Call the getOrder operation. In the response:
- Locate the shipment in the
shipmentsarray. - Locate the package in the
packagesarray. - Check the
tracking.dropOffLocationobject. This object contains two properties:type(string) andattributes(object). Thetypeindicates where the package was delivered, and theattributesproperty provides recipient details based on delivery type.
Drop point types and associated fields
FALLBACK_NEIGHBOR_DELIVERYneighborName: Name of the neighbor who received the packagehouseNumber: Door or unit number of the neighbor
RECEPTIONISTrecipientName: Name of the receptionist who received the package
LOCKERnumber: The locker numberaccessCode: The code to access the locker
Sample response
{
"packages": [
{
"packageId": "PKG-abc123def456",
"status": "DELIVERED",
"tracking": {
"carrier": { "carrierCode": "UPS", "trackingNumber": "1Z999AA101" },
"dropOffLocation": {
"type": "FALLBACK_NEIGHBOR_DELIVERY",
"attributes": {
"neighborName": "Frank Doe",
"houseNumber": "142"
}
}
}
}
]
}
Updated 9 days ago
Did this page help you?

