List all tags for the authenticated user's company
List all tags for the authenticated user's company
Retrieve a list of tags for the authenticated user's company. Results are ordered by creation date (newest first).
Authorization
bearerAuth Console session token (Authorization: Bearer <session>) or product API key (Authorization: Bearer <api-key> or x-api-key). Session tokens are validated via Better Auth get-session; API keys against the shared database.
In: header
Query Parameters
Filter by auto_assign flag. True if the tag can be automatically assigned by the system, False if it can only be assigned manually.
Filter by tag name (case-insensitive partial match)
A page number within the paginated result set.
Number of results to return per page.
Header Parameters
Response Body
application/json
application/json
application/json
curl -X GET "https://example.com/api/v1/tags"{ "count": 123, "next": "http://api.example.org/accounts/?page=4", "previous": "http://api.example.org/accounts/?page=2", "results": [ { "id": 0, "name": "string", "description": "string", "auto_assign": true, "created_at": "2019-08-24T14:15:22Z", "updated_at": "2019-08-24T14:15:22Z", "document_count": 0 } ]}List ontology relations for a file GET
Previous Page
Create a new tag for the company POST
Create a new tag for the company Create a new tag for the authenticated user's company. The auto_assign flag determines if the tag can be automatically assigned by the system (True) or only manually (False). Requires tag creation permission.