This endpoint allows you to get a list of topics in a given category
* Will become available after new release at 3:00PM PST on February 5th, 2018.
Data Types
Object Topic
Field name | Type | Description |
---|---|---|
Id | int | Id of topic |
Name | string | Display name |
Description* | string | Description of topic |
Response Object
Field name | Type | Description |
---|---|---|
Topics | Topic[] | List of Topic objects |
Success | bool | Indicates whether a request was successful (true) or not (false) |
Message | string | Error message if success is false |
Request/Response
Path Parameters
Parameter Name | Type | Description |
---|---|---|
cat_id | int | Topics with this category ID will be returned |
HTTP Request
GET https://sentry.bombora.com/v2/Topic/TopicsByCategory?cat_id=1500511
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 objects.
{
"Topics":
[
{
"Id":1342108,
"Name":"Small Business Accounting",
"Description":"Measurement, processing and communication of financial information about small business entities"
},
{
"Id":1342194,
"Name":"Audits",
"Description":"Financial examinations of accounts"
},
{
"Id":1342385,
"Name":"Activity-Based Costing (ABC)",
"Description":"Process of assigning product overhead costs to specific activities"
},
.....
],
"Success":true,
"Message":null
}