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