Skip to main content
POST
/
api
/
Fba
/
FbaInstruction
/
create
Create FBA instructions
curl --request POST \
  --url https://api.returnshelper.com/uat/user/api/Fba/FbaInstruction/create \
  --header 'Content-Type: application/json' \
  --header 'x-rr-apikey: <api-key>' \
  --header 'x-rr-apitoken: <api-key>' \
  --data '
{
  "fbaInstructionHandlingCode": "<string>",
  "fnskuList": [
    {
      "fnsku": "<string>",
      "warehouseId": 123,
      "quantity": 123
    }
  ]
}
'
{
  "data": [
    {
      "fbaInstructionId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "apiId": 123,
      "fbaInstructionNumber": "<string>",
      "fbaInstructionHandlingCode": "<string>",
      "handlingStatusCode": "<string>",
      "quantity": 123,
      "warehouseId": 123,
      "warehouseApiId": 123
    }
  ]
}
Creates one or more FBA instructions (the directives that tell the warehouse what to do with FBA inventory). See Get all FBA instruction handling types for more details

Authorizations

x-rr-apikey
string
header
required

Your API key

x-rr-apitoken
string
header
required

Your API token — keep this private

Body

application/json
fbaInstructionHandlingCode
string
required

FBA instruction handling code (e.g., REPLENISH, RECALL)

fnskuList
object[]
required

List of FBA SKUs to process. All items must belong to the same warehouse.

Response

Success

data
object[]

List of created FBA instructions