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