Skip to main content
PATCH
/
v1
/
equipment
/
bags
/
{id}
Update bag
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
  }
}

Path Parameters

id
string
required

Bag ID (UUID or taxonomy ID)

Body

application/json
label_printed
boolean
fulfilled
boolean
status
string

Response

Bag updated successfully

success
boolean
required
bag
object
required