Assign Tags To Order
This endpoint allows you to assign a list of tags to an order.
REST Endpoint
POST /restapi/v1/customers/:customerId/integrations/:integrationId/orders/:orderId/assign-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
}