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