curl --request PUT \
--url https://api.sanka.com/v1/public/locations/{location_id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"externalId": "<string>",
"warehouse": "<string>",
"floor": "<string>",
"zone": "<string>",
"aisle": "<string>",
"rack": "<string>",
"shelf": "<string>",
"bin": "<string>",
"usageStatus": "<string>"
}
'{
"ok": true,
"status": "<string>",
"external_id": "<string>",
"location_id": "<string>",
"ctx_id": "<string>"
}curl --request PUT \
--url https://api.sanka.com/v1/public/locations/{location_id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"externalId": "<string>",
"warehouse": "<string>",
"floor": "<string>",
"zone": "<string>",
"aisle": "<string>",
"rack": "<string>",
"shelf": "<string>",
"bin": "<string>",
"usageStatus": "<string>"
}
'{
"ok": true,
"status": "<string>",
"external_id": "<string>",
"location_id": "<string>",
"ctx_id": "<string>"
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.