Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

This endpoint allows you to get a list of topics in a given category

Table of Contents

Data Types

Object Topic

Field nameTypeDescription
IdintId of topic
NamestringDisplay name

Response Object

Field nameTypeDescription
TopicsTopic[]List of Topic objects
SuccessboolIndicates whether a request was successful (true) or not (false)
MessagestringError message if success is false

Request/Response

HTTP Request

GET https://sentry.bombora.com/v2/Topic/TopicsByCategory?cat_id=1500511

HTTP Request Header

Authorization: Basic {AUTH_KEY}

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"

},

{

"Id":1342194,

"Name":"Audits"

},

{

"Id":1342385,

"Name":"Activity-Based Costing (ABC)"

},

.....

],

"Success":true,

"Message":null

}

Comments