Selling Partner API for FBA Small And Light (v1)

Download OpenAPI specification:Download

The Selling Partner API for FBA Small and Light lets you help sellers manage their listings in the Small and Light program. The program reduces the cost of fulfilling orders for small and lightweight FBA inventory. You can enroll or remove items from the program and check item eligibility and enrollment status. You can also preview the estimated program fees charged to a seller for items sold while enrolled in the program.

smallAndLight

getSmallAndLightEnrollmentBySellerSKU

Returns the Small and Light enrollment status for the item indicated by the specified seller SKU in the specified marketplace.

Usage Plan:

Rate (requests per second) Burst
2 10

For more information, see "Usage Plans and Rate Limits" in the Selling Partner API documentation.

path Parameters
sellerSKU
required
string

The seller SKU that identifies the item.

query Parameters
marketplaceIds
required
Array of strings <= 1 items

The marketplace for which the enrollment status is retrieved. Note: Accepts a single marketplace only.

Responses

Response samples

Content type
application/json
{
  • "marketplaceId": "string",
  • "sellerSKU": "string",
  • "status": "ENROLLED"
}

putSmallAndLightEnrollmentBySellerSKU

Enrolls the item indicated by the specified seller SKU in the Small and Light program in the specified marketplace. If the item is not eligible, the ineligibility reasons are returned.

Usage Plan:

Rate (requests per second) Burst
2 5

For more information, see "Usage Plans and Rate Limits" in the Selling Partner API documentation.

path Parameters
sellerSKU
required
string

The seller SKU that identifies the item.

query Parameters
marketplaceIds
required
Array of strings <= 1 items

The marketplace in which to enroll the item. Note: Accepts a single marketplace only.

Responses

Response samples

Content type
application/json
{
  • "marketplaceId": "string",
  • "sellerSKU": "string",
  • "status": "ENROLLED"
}

deleteSmallAndLightEnrollmentBySellerSKU

Removes the item indicated by the specified seller SKU from the Small and Light program in the specified marketplace. If the item is not eligible for disenrollment, the ineligibility reasons are returned.

Usage Plan:

Rate (requests per second) Burst
2 5

For more information, see "Usage Plans and Rate Limits" in the Selling Partner API documentation.

path Parameters
sellerSKU
required
string

The seller SKU that identifies the item.

query Parameters
marketplaceIds
required
Array of strings <= 1 items

The marketplace in which to remove the item from the Small and Light program. Note: Accepts a single marketplace only.

Responses

Response samples

Content type
application/json
{
  • "errors": [
    ]
}

getSmallAndLightEligibilityBySellerSKU

Returns the Small and Light program eligibility status of the item indicated by the specified seller SKU in the specified marketplace. If the item is not eligible, the ineligibility reasons are returned.

Usage Plan:

Rate (requests per second) Burst
2 10

For more information, see "Usage Plans and Rate Limits" in the Selling Partner API documentation.

path Parameters
sellerSKU
required
string

The seller SKU that identifies the item.

query Parameters
marketplaceIds
required
Array of strings <= 1 items

The marketplace for which the eligibility status is retrieved. NOTE: Accepts a single marketplace only.

Responses

Response samples

Content type
application/json
{
  • "marketplaceId": "string",
  • "sellerSKU": "string",
  • "status": "ELIGIBLE"
}

getSmallAndLightFeePreview

Returns the Small and Light fee estimates for the specified items. You must include a marketplaceId parameter to retrieve the proper fee estimates for items to be sold in that marketplace. The ordering of items in the response will mirror the order of the items in the request. Duplicate ASIN/price combinations are removed.

Usage Plan:

Rate (requests per second) Burst
1 3

For more information, see "Usage Plans and Rate Limits" in the Selling Partner API documentation.

Request Body schema: application/json
marketplaceId
required
string

A marketplace identifier.

required
Array of objects (Item) <= 25 items

A list of items for which to retrieve fee estimates (limit: 25).

Responses

Request samples

Content type
application/json
{
  • "marketplaceId": "string",
  • "items": [
    ]
}

Response samples

Content type
application/json
{
  • "data": [
    ]
}