Endpoints:
Assign Order Tags
POST /order/tags assigns tags to the specified orders
Required fields:
order_ids, tags, are required when assigning users to an order.
This endpoint will return200 OK if the request was a success.
Example JSON Request
{
"order_ids": [2234234, 53434534534, 34534534, 674567456],
"tags": ["tag1", "tag2", "tag3"]
}
Remove Order Tags
POST /order/tags/remove removes tags from the specified orders
Required fields:
order_ids, tags, are required when removing tags from an order.
This endpoint will return200 OK if the request was a success.
Example JSON Request
{
"order_ids": [2234234, 53434534534, 34534534, 674567456],
"tags": ["tag1", "tag2", "tag3"]
}