Get All Tags
GET
/v1/tags
const url = 'https://example.com/api/v1/tags';const options = {method: 'GET', headers: {Authorization: '<Authorization>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://example.com/api/v1/tags \ --header 'Authorization: <Authorization>'Authorizations
Section titled “Authorizations ”Responses
Section titled “ Responses ”OK
Media type application/json
Array<object>
object
color
string
createdAt
string
description
string
icon
string
id
string
name
string
parentId
string
updatedAt
string
Example generated
[ { "color": "example", "createdAt": "example", "description": "example", "icon": "example", "id": "example", "name": "example", "parentId": "example", "updatedAt": "example" }]