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": "<string>"
}
],
"tag_id": "<string>",
"no_refresh": true,
"reason": "<string>",
"is_system": true
}'
/order/add_tag
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": "<string>"
}
],
"tag_id": "<string>",
"no_refresh": true,
"reason": "<string>",
"is_system": true
}'
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
OK