This endpoint allows you to get a list of topics
Data Types
Object Topic
Field name | Type | Description |
---|---|---|
Id | int | Id of topic |
Name | string | Display name |
Object Topics
Field name | Type | Description |
---|---|---|
Topics | Topic[] | List of all topics |
Request/Response
HTTP Request
GET https://sentry.bombora.com/v2/cmp/GetAllTopics
HTTP Request Header
Authorization: Basic {AUTH_KEY}
Referer: bombora.com
HTTP Response
If successful, the response contains an instance of Topics, which is a list of Topic.
{
"Topics":[
{
"Id":1,
"Name":"Investment Software"
},
{
"Id":1333532,
"Name":"Local Government"
},
{
"Id":1333536,
"Name":"Legal"
},.................
],
"Success":true,
"Message":null
}