Skip to main content
POST
/
list
/
{listId}
/
items
Add items to a specific list
curl --request POST \
  --url https://prod01.oms.fabric.inc/api/v2/list/{listId}/items \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '[
  {
    "sku": "sku1",
    "itemId": "123",
    "quantity": 1
  }
]'
[
  {
    "listId": "5349b4ddd2781d08c09890f4",
    "sku": "sku1",
    "itemId": "123",
    "quantity": 1
  }
]

Authorizations

Authorization
string
header
required

Path Parameters

listId
string
required
Example:

Body

application/json · object[]
sku
string
Example:
itemId
string
Example:
quantity
integer
Example:

Response

listId
string
required
Example:
sku
string
Example:
itemId
string
Example:
quantity
integer
Required range: x >= 0
Example: