This operation is used to create, update or remove tags associated with a specific order.
- To create or update tags, provide one or more values in
tagIdsarray. - To remove previously assigned tags, provide an empty array for
tagIds([]).
Security
bearerAuth
- Sandbox Serverhttps://api-sandbox.sendpro360.pitneybowes.com/ordermanagement/api/v1/orders/{orderId}/tags
- Production Server (uses live data)https://api.sendpro360.pitneybowes.com/ordermanagement/api/v1/orders/{orderId}/tags
- Sandbox Server for Canadahttps://api-ppd.shipping360.pitneybowes.com/ca/shipping/api/v1/orders/{orderId}/tags
- Production Server for Canadahttps://api.shipping360.pitneybowes.com/ca/shipping/api/v1/orders/{orderId}/tags
curl -i -X PUT \
'https://api-sandbox.sendpro360.pitneybowes.com/ordermanagement/api/v1/orders/{orderId}/tags' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"tagIds": [
"Urgent"
]
}'