fulfillmentOutbound
fulfillmentOrders
Retrieve a fulfillment order.
Usage Plan:
| Rate (requests per second) | Burst |
|---|---|
| 2 | 30 |
The x-amzn-RateLimit-Limit response header returns the usage plan rate limits that were applied to the requested operation, when available. The preceding table indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values than those shown here. For more information, see Usage Plans and Rate Limits in the Selling Partner API.
get/fulfillment/outbound/2026-07-04/orders/{orderId}
Path parameters
orderIdstring required
The ID of the order you want to retrieve.
Query parameters
shipments'INCLUDE' | 'EXCLUDE'
Whether to include shipment data in the response. Included by default.
Headers
x-amzn-fulfillment-service-idstring
The identifier of the fulfillment service used for this operation.
Response
Success.
Example response
{
"order": {
"orderId": "ABC123XYZ",
"receiveTime": "2025-04-21T10:30:00Z",
"status": "PROCESSING",
"statusUpdateTime": "2025-04-21T11:45:00Z",
"fulfillmentConfiguration": {
"serviceLevel": {
"serviceTiers": [
"STANDARD"
]
},
"action": "HOLD",
"policy": "FILL_ALL_AVAILABLE",
"services": {
"packaging": {
"packagingOption": "UNBRANDED",
"packingSlip": {
"templateName": "templateName",
"templateAttributes": {
"orderId": "MyOrder-123",
"orderTime": "2026-07-01T10:00:00Z",
"orderText": "Thank you for your purchase!"
}
}
},
"additional": {}
}
},
"origin": {
"countryCode": "US"
},
"destination": {
"deliveryAddress": {
"name": "Shopper Name",
"addressLine1": "1000 Winthrop Ave N",
"city": "Seattle",
"countryCode": "US",
"postalCode": "98103",
"stateOrRegion": "WA",
"phone": "123-456-7890",
"email": "shopper@email.com"
}
},
"lineItems": [
{
"lineItemId": "someLineItemId",
"product": {
"productIdentifier": {
"amazonSku": "BOOK-123-HC"
},
"perUnitDeclaredValue": {
"currencyCode": "USD",
"amount": "14.99"
}
},
"amount": {
"unit": "EACHES",
"value": "1.0"
},
"cancelledAmount": {
"unit": "EACHES",
"value": "0.0"
},
"unfulfillableAmount": {
"unit": "EACHES",
"value": "0.0"
},
"fulfillmentConfiguration": {
"services": {
"packaging": {
"packingSlip": {
"templateName": "templateName",
"templateAttributes": {
"giftMessage": "Happy Birthday!",
"lineItemText": "Item 1 of 2"
}
}
},
"delivery": {
"paymentOnDelivery": {
"perUnitServicePrice": {
"currencyCode": "USD",
"amount": "14.99"
}
}
}
}
}
}
],
"shipments": [
{
"amazonShipmentId": "SHIP901234",
"amazonFacility": {
"facilityId": "FC456"
},
"status": "SHIPPED",
"shipTime": "2025-04-21T15:00:00Z",
"deliveryTime": "2025-04-23T12:00:00Z",
"items": [
{
"shipmentItemId": "SI001",
"productIdentifier": {
"amazonSku": "SKU123"
},
"lineItemId": "LI789012",
"amount": {
"value": "1.0",
"unit": "EACHES"
}
}
],
"packages": [
{
"packageId": "PKG-abc123def456",
"status": "DELIVERED",
"shipmentItemIds": [
"SI001"
],
"tracking": {
"carrier": {
"carrierCode": "FEDEX",
"trackingNumber": "123456789"
},
"amazon": {
"trackingNumber": "123456789"
}
}
}
]
}
],
"paymentInformation": {
"payments": [
{
"paymentId": "PAY-12345",
"paymentMethod": "CREDIT_CARD",
"paymentTime": "2019-10-13T13:53:49Z"
}
]
}
}
}