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