curl --request PUT \
--url https://api.skulabs.com/purchase_order/set_tags \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"id": "<string>",
"tags": [
"507f1f77bcf86cd799439011",
"507f1f77bcf86cd799439012"
]
}
'{
"success": true
}Replace all tags on one or more purchase orders with a new set of tags.
curl --request PUT \
--url https://api.skulabs.com/purchase_order/set_tags \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"id": "<string>",
"tags": [
"507f1f77bcf86cd799439011",
"507f1f77bcf86cd799439012"
]
}
'{
"success": true
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Tags set on purchase order
Whether the operation succeeded