cURL
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 } ]
Retrieves items from a specific list by list ID.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Id of the list from which items are to be retrieved.
returns items
ID of the list to which the item is added
"5349b4ddd2781d08c09890f4"
SKU
"sku1"
Id of the item to be added to the list
"123"
Number of items added to the list
x >= 0
1
Was this page helpful?