Rate (requests per second) | Burst |
---|---|
2 | 30 |
x-amzn-RateLimit-Limit
response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may have higher rate and burst values than those shown here. For more information, refer to Usage Plans and Rate Limits in the Selling Partner APISellerFulfillmentOrderId
must be unique for each fulfillment order that a seller creates. If the seller's system already creates unique order identifiers, then these might be good values for them to use.DisplayableOrderId
should match the order identifier that the seller provides to the recipient. The seller can use the SellerFulfillmentOrderId
for this value or they can specify an alternate value if they want the recipient to reference an alternate order identifier.ScheduledDelivery
, choose Ship
for the fulfillmentAction
. Hold
is not a valid fulfillmentAction
value when the shippingSpeedCategory
value is ScheduledDelivery
.FulfillmentPolicy
value specified when you submitted the createFulfillmentOrder
operation.SellerSKU
. For example, the seller might assign different SellerFulfillmentOrderItemId
values to two items in a fulfillment order that share the same SellerSKU
but have different GiftMessage
values.{
"marketplaceId": {{MARKET_USA}},
"sellerFulfillmentOrderId": "1TestOrder",
"displayableOrderId": "1TestOrder",
"displayableOrderDate": "2019-08-24T14:15:22.123Z",
"displayableOrderComment": "string",
"shippingSpeedCategory": "Standard",
"destinationAddress": {
"addressLine1": "1234 Elm Street",
"addressLine2": "Apt 56B",
"addressLine3": "Building 4",
"city": "Seattle",
"countryCode": "US",
"county": "King",
"district": "Downtown",
"name": "John Doe",
"phoneNumber": "+14155552671",
"postalCode": "98101",
"stateOrRegion": "WA"
},
"deliveryPreferences": null,
"fulfillmentAction": "Ship",
"fulfillmentPolicy": "FillOrKill",
"codSettings": null,
"shipFromCountryCode": "US",
"notificationEmails": null,
"featureConstraints": null,
"items": [
{
"sellerSku": "123ABC",
"sellerFulfillmentOrderItemId": "123OrderID",
"quantity": 1,
"giftMessage": "string",
"displayableComment": "string",
"fulfillmentNetworkSku": "123NetworkSKU",
"perUnitDeclaredValue": {
"currencyCode": "USD",
"value": "2.0"
},
"perUnitPrice": {
"currencyCode": "USD",
"value": "2.0"
},
"perUnitTax": {
"currencyCode": "USD",
"value": "0.75"
}
}
],
"paymentInformation": null
}
curl --location --request POST 'https://sandbox.sellingpartnerapi-na.amazon.com/fba/outbound/2020-07-01/fulfillmentOrders' \
--header 'Content-Type: application/json' \
--data-raw '{
"marketplaceId": {{MARKET_USA}},
"sellerFulfillmentOrderId": "1TestOrder",
"displayableOrderId": "1TestOrder",
"displayableOrderDate": "2019-08-24T14:15:22.123Z",
"displayableOrderComment": "string",
"shippingSpeedCategory": "Standard",
"destinationAddress": {
"addressLine1": "1234 Elm Street",
"addressLine2": "Apt 56B",
"addressLine3": "Building 4",
"city": "Seattle",
"countryCode": "US",
"county": "King",
"district": "Downtown",
"name": "John Doe",
"phoneNumber": "+14155552671",
"postalCode": "98101",
"stateOrRegion": "WA"
},
"deliveryPreferences": null,
"fulfillmentAction": "Ship",
"fulfillmentPolicy": "FillOrKill",
"codSettings": null,
"shipFromCountryCode": "US",
"notificationEmails": null,
"featureConstraints": null,
"items": [
{
"sellerSku": "123ABC",
"sellerFulfillmentOrderItemId": "123OrderID",
"quantity": 1,
"giftMessage": "string",
"displayableComment": "string",
"fulfillmentNetworkSku": "123NetworkSKU",
"perUnitDeclaredValue": {
"currencyCode": "USD",
"value": "2.0"
},
"perUnitPrice": {
"currencyCode": "USD",
"value": "2.0"
},
"perUnitTax": {
"currencyCode": "USD",
"value": "0.75"
}
}
],
"paymentInformation": null
}'
{
"errors": [
{
"code": "string",
"message": "string",
"details": "string"
}
]
}