Temso Docs
API referenceConfiguration

List Topics

Returns the topics configured in a project.

GET
/projects/{projectId}/topics

Returns the topics configured in a project.

Path Parameters

projectId*string

Project ID (see List Projects)

Query Parameters

page?integer

Page number (1-indexed, default: 1)

Default1
Range1 <= value
limit?integer

Items per page (default: 50, max: 1000)

Default50
Range1 <= value <= 1000

Response Body

application/json

curl -X GET "https://example.com/projects/string/topics"
{
  "data": [
    {
      "topicId": "string",
      "name": "string",
      "description": "string",
      "brandId": "string",
      "createdAt": "string",
      "updatedAt": "string"
    }
  ],
  "pagination": {
    "page": 0,
    "limit": 0,
    "total": 0
  }
}