Returns a paginated collection of file tags for a company.
GET
/file_tags
curl \
--request GET 'https://api.visible.vc/file_tags?company_id=string' \
--header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
"file_tags": [
{
"id": "ec5252fe-9abc-4096-85e9-1374e70a3182",
"name": "Board",
"created_at": "2025-01-01T00:00:00.000Z"
}
],
"meta": {
"total": 1,
"total_pages": 1,
"page": 1
}
}
Response examples (401)
{
"errors": [
{
"type": "unauthorized"
}
]
}
Response examples (403)
{
"errors": [
{
"type": "forbidden"
}
]
}
Response examples (429)
{
"errors": [
{
"type": "rate_limit_exceeded"
}
]
}