Update order tags and attributes

Use the /orders endpoint to replace order tags and attributes with new ones. Active subscriptions with these attributes will automatically update to reflect the new tags and attributes.

{
  "orders": [
    {
      "order": "order-id-goes-here", // order ID to be updated
      "tags": {
        "TagKey1": "TagValue1", // order tag to be added or updated
        "TagKey2": "TagValue2" // order tag to be added or updated
      },
      "items": [
        {
          "product": "product-path", // product path of the product whose attributes will be added or updated
          "attributes": {
            "AttributeKey1": "AttributeValue1", // attribute to be added or updated
            "AttributeKey2": "AttributeValue2" // attribute to be added or updated
          }
        }
      ]
    }
  ]
}
Language
Authorization
Basic
base64
:
Click Try It! to start a request and see the response here!