curl --request POST \
--url https://api.skulabs.com/order/add_tag \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"orders": [
{
"order_number": "<string>",
"store_id": "507f1f77bcf86cd799439011"
}
],
"tag_id": "<string>",
"no_refresh": true,
"reason": "<string>",
"is_system": true
}
'{
"success": true,
"errors": [
{
"message": "<string>"
}
]
}Add a tag to one or more orders by tag ID.
curl --request POST \
--url https://api.skulabs.com/order/add_tag \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"orders": [
{
"order_number": "<string>",
"store_id": "507f1f77bcf86cd799439011"
}
],
"tag_id": "<string>",
"no_refresh": true,
"reason": "<string>",
"is_system": true
}
'{
"success": true,
"errors": [
{
"message": "<string>"
}
]
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.