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 API.ScheduledDeliveryInfo
response object, which contains the available delivery windows for a Scheduled Delivery. The ScheduledDeliveryInfo
response object can only be returned for fulfillment order previews with ShippingSpeedCategories
= ScheduledDelivery
.{
"marketplaceId": "string",
"address": {
"addressLine1": "address_1",
"addressLine2": "address_2",
"addressLine3": "address_3",
"city": "Seattle",
"countryCode": "US",
"county": "Washington",
"district": "District1",
"name": "address_name",
"phoneNumber": "+14155552671",
"postalCode": "123456",
"stateOrRegion": "Washington"
},
"items": [
{
"sellerSku": "string",
"quantity": 0,
"perUnitDeclaredValue": {
"currencyCode": "string",
"amount": "string"
},
"sellerFulfillmentOrderItemId": "string"
}
],
"shippingSpeedCategories": [
"Standard"
],
"includeCODFulfillmentPreview": true,
"includeDeliveryWindows": true,
"featureConstraints": [
{
"featureName": "string",
"featureFulfillmentPolicy": "Required"
}
]
}
curl --location --request POST 'https://sandbox.sellingpartnerapi-na.amazon.com/fba/outbound/2020-07-01/fulfillmentOrders/preview' \
--header 'Content-Type: application/json' \
--data-raw '{
"marketplaceId": "string",
"address": {
"addressLine1": "address_1",
"addressLine2": "address_2",
"addressLine3": "address_3",
"city": "Seattle",
"countryCode": "US",
"county": "Washington",
"district": "District1",
"name": "address_name",
"phoneNumber": "+14155552671",
"postalCode": "123456",
"stateOrRegion": "Washington"
},
"items": [
{
"sellerSku": "string",
"quantity": 0,
"perUnitDeclaredValue": {
"currencyCode": "string",
"amount": "string"
},
"sellerFulfillmentOrderItemId": "string"
}
],
"shippingSpeedCategories": [
"Standard"
],
"includeCODFulfillmentPreview": true,
"includeDeliveryWindows": true,
"featureConstraints": [
{
"featureName": "string",
"featureFulfillmentPolicy": "Required"
}
]
}'
{
"payload": {
"fulfillmentPreviews": [
{
"shippingSpeedCategory": "Standard",
"scheduledDeliveryInfo": {
"deliveryTimeZone": "string",
"deliveryWindows": [
{
"startDate": "2019-08-24T14:15:22Z",
"endDate": "2019-08-24T14:15:22Z"
}
]
},
"isFulfillable": true,
"isCODCapable": true,
"estimatedShippingWeight": {
"value": 11,
"unit": "Grams"
},
"estimatedFees": [
{
"name": "FBAPerUnitFulfillmentFee",
"amount": {
"currencyCode": "string",
"amount": "string"
}
}
],
"fulfillmentPreviewShipments": [
{
"earliestShipDate": "2019-08-24T14:15:22Z",
"latestShipDate": "2019-08-24T14:15:22Z",
"earliestArrivalDate": "2019-08-24T14:15:22Z",
"latestArrivalDate": "2019-08-24T14:15:22Z",
"shippingNotes": [
"string"
],
"fulfillmentPreviewItems": [
{
"sellerSku": "string",
"quantity": 0,
"sellerFulfillmentOrderItemId": "string",
"estimatedShippingWeight": {
"value": 11,
"unit": "Grams"
},
"shippingWeightCalculationMethod": "Package"
}
]
}
],
"unfulfillablePreviewItems": [
{
"sellerSku": "string",
"quantity": 0,
"sellerFulfillmentOrderItemId": "string",
"itemUnfulfillableReasons": [
"string"
]
}
],
"orderUnfulfillableReasons": [
"string"
],
"marketplaceId": "string",
"featureConstraints": [
{
"featureName": "string",
"featureFulfillmentPolicy": "Required"
}
]
}
]
},
"errors": [
{
"code": "string",
"message": "string",
"details": "string"
}
]
}