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.
Request
The Order ID. List of Order ID can be found here
the label or textual identifier assigned to a specific tag or label associated with the order.
{
"tag_name": "test"
}
Request samples
[api.label.responses]
Response status code, a numeric or alphanumeric identifier used to convey the outcome or status of a request, operation, or transaction in various systems and applications, typically indicating whether the action was successful, encountered an error, or resulted in a specific condition.
Response flag, boolean indicator used to signal a particular condition or state in the response of a system or application, often representing the presence or absence of certain conditions or outcomes.
Detailed structure of the orders tag model object showing its fields and data types.
A unique identifier assigned to a tag associated with an order.
A textual identifier used to describe a tag associated with an order.
{
"status": 200,
"success": true,
"data": {
"id": 665151403,
"name": "test"
}
}