curl --request PUT \
--url https://api.skulabs.com/item/update \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"item_id": "<string>",
"name": "<string>",
"sku": "<string>",
"upc": "<string>",
"weight": 123,
"weight_unit": "<string>",
"length": 123,
"width": 123,
"height": 123,
"dimensions_unit": "<string>",
"fulfillment_sku": "<string>",
"notes": "<string>",
"unit": "<string>",
"cost": 123,
"wholesale": "<string>",
"retail": 123,
"image": "<string>",
"active": true,
"description": "<string>",
"sale": 123
}'
/item/update
curl --request PUT \
--url https://api.skulabs.com/item/update \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"item_id": "<string>",
"name": "<string>",
"sku": "<string>",
"upc": "<string>",
"weight": 123,
"weight_unit": "<string>",
"length": 123,
"width": 123,
"height": 123,
"dimensions_unit": "<string>",
"fulfillment_sku": "<string>",
"notes": "<string>",
"unit": "<string>",
"cost": 123,
"wholesale": "<string>",
"retail": 123,
"image": "<string>",
"active": true,
"description": "<string>",
"sale": 123
}'
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
OK