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.