curl --request POST \
--url https://api.skulabs.com/warehouse/create \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"name": "<string>",
"type": "<string>",
"address": "<string>",
"store_id": "<string>",
"states": "<string>"
}'
/warehouse/create
curl --request POST \
--url https://api.skulabs.com/warehouse/create \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"name": "<string>",
"type": "<string>",
"address": "<string>",
"store_id": "<string>",
"states": "<string>"
}'
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
OK