curl --request POST \
--url https://api.skulabs.com/item/bulk_assign \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"item_ids": [
"<string>"
],
"warehouse_id": "<string>",
"name": "<string>",
"location_alias": "<string>"
}
'{
"success": true,
"errors": [
{
"message": "<string>"
}
],
"skulabs_warning": {
"message": "<string>",
"overview": "<string>"
}
}Assign items to a warehouse location in bulk. If the location does not exist, it will be created.
curl --request POST \
--url https://api.skulabs.com/item/bulk_assign \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"item_ids": [
"<string>"
],
"warehouse_id": "<string>",
"name": "<string>",
"location_alias": "<string>"
}
'{
"success": true,
"errors": [
{
"message": "<string>"
}
],
"skulabs_warning": {
"message": "<string>",
"overview": "<string>"
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.