Skip to content

Update Tags for Bulk Orders

Request

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 tagIds array.
  • To remove previously assigned tags for an specified order, provide an empty array for tagIds ([]).
Security
bearerAuth
Bodyapplication/jsonrequired
tagsArray of objectsrequired
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"
      }
    ]
  }'

Responses

The specified tags have been updated with the order.

Response
No content