List your tags
Returns every tag in your account, each with its name and optional display colour and icon.
Tags are labels you attach to inventory lines to group them however you like. Attach and detach them on a line through the inventory write endpoints (POST /v1/inventory, PATCH /v1/inventory/{inventoryId}, and the bulk endpoints).
Requires the inventory:read scope.
Responses
- application/json
- application/json
- application/json
- application/json
- application/json
- application/json
- application/json
Request Example for get/inventory/tags
curl https://public-api.cardnexus.com/v1/inventory/tags \
--header 'Authorization: Bearer YOUR_SECRET_TOKEN'
[
{
"name": "Trade binder",
"color": "#22c55e",
"icon": "star"
}
]