Light Mode
Create Order Tag
POST
/orders/{order_id}/tagsLast modified: 16 days ago
This 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
Path Params
order_id
integer
required
The Order ID. List of Order ID can be found here
Body Params application/json
tag_name
string
required
the label or textual identifier assigned to a specific tag or label associated with the order.
Example
{
"tag_name": "test"
}
Request samples
Responses
Success(200)
Not Found(404)
Error Validation(422)
HTTP Code: 200
Content Type : JSONapplication/json
Data Schema
No schema defined
Example
{
"status": 200,
"success": true,
"data": {
"id": 665151403,
"name": "test"
}
}
Last modified: 16 days ago