curl --request POST \
--url http://localhost:3000/v1/equipment/bags/{id}/assign-tote \
--header 'Content-Type: application/json' \
--data '
{
"tote_id": "011000001000020053"
}
'{
"success": true,
"bag": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"bag_code": "<string>",
"display_id": "<string>",
"label": "<string>",
"bag_type": "<string>",
"status": "<string>",
"label_printed": true,
"fulfilled": true,
"order_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"order": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"order_number": "<string>",
"display_id": 123,
"customer_name": "<string>"
},
"slot_id": "<string>",
"slot": {
"id": "<string>",
"name": "<string>",
"equipment_type": "<string>",
"display_location": "<string>"
},
"tote_id": "011000001000020053",
"tote": {
"id": "011000001000020053",
"display_id": "<string>",
"label": "<string>"
},
"items": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"product_name": "<string>",
"quantity": 123,
"upc": "<string>",
"temperature_zone": "<string>"
}
],
"item_count": 123,
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
}
}Assign a bag to a tote for delivery
curl --request POST \
--url http://localhost:3000/v1/equipment/bags/{id}/assign-tote \
--header 'Content-Type: application/json' \
--data '
{
"tote_id": "011000001000020053"
}
'{
"success": true,
"bag": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"bag_code": "<string>",
"display_id": "<string>",
"label": "<string>",
"bag_type": "<string>",
"status": "<string>",
"label_printed": true,
"fulfilled": true,
"order_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"order": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"order_number": "<string>",
"display_id": 123,
"customer_name": "<string>"
},
"slot_id": "<string>",
"slot": {
"id": "<string>",
"name": "<string>",
"equipment_type": "<string>",
"display_location": "<string>"
},
"tote_id": "011000001000020053",
"tote": {
"id": "011000001000020053",
"display_id": "<string>",
"label": "<string>"
},
"items": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"product_name": "<string>",
"quantity": 123,
"upc": "<string>",
"temperature_zone": "<string>"
}
],
"item_count": 123,
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
}
}