cURL
curl --request GET \ --url https://api.cloudglue.dev/v1/tags \ --header 'Authorization: Bearer <token>'
{ "object": "list", "total": 123, "limit": 123, "offset": 123, "data": [ { "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a", "label": "<string>", "value": "<string>", "type": "file", "file_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a", "segment_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a" } ] }
List all tags
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Filter tags by type: 'file' or 'segment'
file
segment
Maximum number of tags to return
x <= 100
Number of tags to skip
List of tags
Object type, always 'list'
list
The total number of items
The number of items per page
The offset of the items
The list of tags
Show child attributes