API referenceConfiguration
List Topics
Returns the topics configured in a project.
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)
Default
1Range
1 <= valuelimit?integer
Items per page (default: 50, max: 1000)
Default
50Range
1 <= value <= 1000Response 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
}
}