Labels

POST/labels/fnsku

Request FNSKU labels

Submits a request to generate FNSKU labels. Labels are generated asynchronously and will be available for download once processing is complete.

Required attributes

  • Name
    labels
    Type
    array<Label>
    Description
    An array of label requests to generate
  • Name
    labels.*.fnsku
    Type
    string
    Description
    The 10-character Amazon FNSKU code X00SPO3LCY
  • Name
    labels.*.condition
    Type
    string
    Description
    The condition of the item new
  • Name
    labels.*.title
    Type
    string
    Description
    The product title to print on the label Mini Portable Charger
  • Name
    labels.*.count
    Type
    integer
    Description
    The number of labels to generate for this item 10

Optional attributes

  • Name
    labels.*.expiry_date
    Type
    string
    Description
    Optional expiry date to print on the label (YYYY-MM-DD). Only applicable when expiry date printing is enabled for your account. 2026-12-31

Request

POST/labels/fnsku
curl -X POST https://YOUR_DOMAIN/api/labels/fnsku \
  -H "Authorization: Bearer {token}" \
  -H "Accept: application/json" \
  -H "Content-Type: application/json" \
  -d '{
    "labels": [
        {
            "fnsku": "X00SPO3LCY",
            "condition": "new",
            "title": "Mini Portable Charger",
            "count": 10,
            "expiry_date": null
        },
        {
            "fnsku": "X001AB2CD3",
            "condition": "used_like_new",
            "title": "Wireless Mouse",
            "count": 5,
            "expiry_date": "2026-12-31"
        }
    ]
}'
Loading response...