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