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>"
}'
/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>"
}'
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
OK