Skip to main content
GET
/
api
/
v3
/
tags
List all tags for the authenticated user's company
curl --request GET \
  --url https://paradigm.lighton.ai/api/v3/tags \
  --header 'Authorization: Bearer <token>'
{
  "count": 123,
  "next": "http://api.example.org/accounts/?page=4",
  "previous": "http://api.example.org/accounts/?page=2",
  "results": [
    [
      {
        "id": 1,
        "created_at": "2024-01-15T10:30:00Z",
        "updated_at": "2024-01-15T10:30:00Z",
        "tag": "Report",
        "description": "Documents summarizing exchanges, meetings notes, transcripts.",
        "artificial": false
      },
      {
        "id": 2,
        "created_at": "2024-01-14T09:00:00Z",
        "updated_at": "2024-01-14T09:00:00Z",
        "tag": "Product",
        "description": "Product management docs. Design, strategy, roadmaps, release notes.",
        "artificial": true
      }
    ]
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

artificial
boolean

Filter by artificial flag. True if the tag was generated by the system, False if it was manually created.

page
integer

A page number within the paginated result set.

tag
string

Filter by tag title (case-insensitive partial match)

Response

List of tags for the authenticated user's company

count
integer
required
Example:

123

results
object[]
required
next
string<uri> | null
Example:

"http://api.example.org/accounts/?page=4"

previous
string<uri> | null
Example:

"http://api.example.org/accounts/?page=2"