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

Documentation Index

Fetch the complete documentation index at: https://developer.fabric.inc/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

listId
string
required

Id of the list from which items are to be retrieved.

Response

returns items

listId
string
required

ID of the list to which the item is added

Example:

"5349b4ddd2781d08c09890f4"

sku
string

SKU

Example:

"sku1"

itemId
string

Id of the item to be added to the list

Example:

"123"

quantity
integer<int32>

Number of items added to the list

Required range: x >= 0
Example:

1