List Topics
๐งพ List Topics
Endpoint: GET /api/v3/topics
Auth Required: โ Yes (Bearer Token)
๐ Description
Retrieves the list of available topics used in visit planning and content assignments. Topics typically represent areas of discussion or presentation, such as "Product Roadmap" or "Security Strategy."
๐ Query Parameters
Parameter | Type | Required | Default | Description |
---|---|---|---|---|
includeInactive |
boolean | No | โ | If true, includes inactive topics. |
languageId |
integer | No | โ | Language ID for localized topic names. |
๐ค Request Example
GET https://api.briefingedge.com/api/v3/topics?includeInactive=false&languageId=1 Authorization: Bearer <token>
โ Success Response (200 OK)
Returns an array of Topic
objects.
Example:
[ { "TopicID": 1, "Name": "Product Roadmap", "IsActive": true }, { "TopicID": 2, "Name": "Security Strategy", "IsActive": true } ]
โ Error Responses
Code | Message | Description |
---|---|---|
401 | Unauthorized | Missing or invalid bearer token. |
500 | Internal Server Error | Unexpected server-side failure. |