Get Order Tags
Description
This endpoint provides a list of order tags.
The id
returned from this endpoint can be used to populate the tags
field in the request body of the /orders/{orderId}/tags
endpoint.
Responses
[
{
"id": "EMEA",
"name": "EMEA"
}
]
Example
Authentication
This API requires an API key for authentication. The API key should be included in the header of the request as Authorization: Bearer {API_KEY}
.
Request
curl --location '{BASE_URL}/cv/order-tags' \
--header 'Authorization: Bearer {API_KEY}'
09 July 2025