curl --request POST \
--url https://api.skulabs.com/order/add_tag_by_name \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"orders": [
{
"order_number": "<string>",
"store_id": "<string>"
}
],
"tag_name": "<string>",
"reason": "<string>"
}'
/order/add_tag_by_name
curl --request POST \
--url https://api.skulabs.com/order/add_tag_by_name \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"orders": [
{
"order_number": "<string>",
"store_id": "<string>"
}
],
"tag_name": "<string>",
"reason": "<string>"
}'
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
OK