curl --request POST \
--url https://api.skulabs.com/inventory/get_items_incoming \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"item_ids": [
"<string>"
],
"warehouse_ids": [
"<string>"
]
}'
/inventory/get_items_incoming
curl --request POST \
--url https://api.skulabs.com/inventory/get_items_incoming \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"item_ids": [
"<string>"
],
"warehouse_ids": [
"<string>"
]
}'
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
OK