Light Mode
Order Tags
List Order Tags
GET
/orders/tagsThis endpoint allows you to list all available tags that already exist so that you could use them in tagging orders.
`orders.read` - Orders Read Only
Create Order Tag
POST
/orders/{order_id}/tagsThis endpoint allows you to assign a specific order with a tag by using the tag name, by passing the order_id as a path parameter.
You can get a list of available tags from List Tags endpoint.
Moreover, you can get a list of orders assigned to a tag from the List Orders endpoint using the tag query parameter on the List Orders endpoint.
`orders.read_write` - Orders Read & Write
Delete Order Tag
DELETE
/orders/{order_id}/tags/{tag_id}This endpoint allows you to delete a particular tag from a specific order by passing the order_id as a path parameter for the order and the tag_id as a path parameter for the tag.
`orders.read_write` - Orders Read & Write