curl --request PATCH \
--url http://localhost:3000/v1/equipment/bags/{id} \
--header 'Content-Type: application/json' \
--data '
{
"label_printed": true,
"fulfilled": true,
"status": "<string>"
}
'{
"success": true,
"bag": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"bag_code": "<string>",
"display_id": "<string>",
"status": "<string>",
"label_printed": true,
"fulfilled": true
}
}Update bag status, label_printed, or fulfilled state
curl --request PATCH \
--url http://localhost:3000/v1/equipment/bags/{id} \
--header 'Content-Type: application/json' \
--data '
{
"label_printed": true,
"fulfilled": true,
"status": "<string>"
}
'{
"success": true,
"bag": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"bag_code": "<string>",
"display_id": "<string>",
"status": "<string>",
"label_printed": true,
"fulfilled": true
}
}