Get Order Tags
GET /v1/orders/tags
Get all tags added by the merchant previously. A maximum of 100 unique order tags can be added per merchant.
Request Example
curl --request GET \
--url <<api_domain>>/v1/orders/tags \
--header 'Accept: application/json'
--header 'Authorization: Bearer access_token' \
Request Parameters
nil
Response Example
{
"tags": ["tag1", "tag2"]
}
tags |
Array |
Array of string of tags linked to the order - a maximum of 100 tags will be returned |
Updated almost 3 years ago