GET
/note_tags
curl \
--request GET 'https://api.visible.vc/note_tags?company_id=string' \
--header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
"note_tags": [
{
"id": "ec5252fe-9abc-4096-85e9-1374e70a3182",
"name": "Call",
"color": "blue",
"company_id": "a661e061-66aa-4fe0-8bc0-40b00212f991",
"created_at": "2025-02-01T22:08:21.175Z",
"updated_at": "2025-02-01T22:08:21.175Z"
},
{
"id": "56a1bed4-9ac4-4bd1-8533-077f3ae465c3",
"name": "Meeting",
"color": "red",
"company_id": "a661e061-66aa-4fe0-8bc0-40b00212f991",
"created_at": "2025-02-01T22:08:21.175Z",
"updated_at": "2025-02-01T22:08:21.175Z"
}
]
}
Response examples (400)
{
"errors": [
{
"type": "parameter_invalid",
"field": "filter",
"message": "must be an object"
}
]
}
Response examples (401)
{
"errors": [
{
"type": "unauthorized"
}
]
}
Response examples (403)
{
"errors": [
{
"type": "forbidden"
}
]
}
Response examples (429)
{
"errors": [
{
"type": "rate_limit_exceeded"
}
]
}