Skip to main content
POST
/
purchase_order
/
remove_tag
Purchase Order - Remove Tag
curl --request POST \
  --url https://api.skulabs.com/purchase_order/remove_tag \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "purchase_order_ids": [
    "<string>"
  ],
  "tag_id": "<string>"
}
'
{
  "success": true
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
purchase_order_ids
string[]
required

Array of purchase order IDs

tag_id
string
required

Tag ID to remove

Response

Tag removed from purchase orders

success
boolean
required

Whether the operation succeeded