Unassign Tags From Order

Use this endpoint to unassign tags from an order.

REST Endpoint

POST /restapi/v1/customers/:customerId/integrations/:integrationId/orders/:orderId/unassign-tags

Request Content Type

application/json

Request JSON Example

{
    "tagIds": [
      "1234",
      "4567"
    ]
}

Explanation of Request Fields

Field Type Required Description
tagIds array true array of tag ids

Response Status Code

200 OK

Response Content Type

application/json

Response JSON Example

{
  "ok": true
}