Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

This endpoint allows you to get a theme by its name or ID

Data Types

Object Topic

Field nameTypeDescription
IdintId of theme
NamestringDisplay name

Response Object

Field nameTypeDescription
TopicTopicTopic object
SuccessboolIndicates whether a request was successful (true) or not (false)
MessagestringError message if success is false

Request/Response

HTTP Request

To retrieve theme by ID:

GET https://sentry.bombora.com/v2/Topic/GetTheme?id=1500622

To retrieve theme by name:

GET https://sentry.bombora.com/v2/Topic/GetTheme?name=business

HTTP Request Header

Authorization: Basic {AUTH_KEY}

HTTP Response

If successful, the response contains an instance of Topic.

{

"Topic":

{

"Id":1500622,

"Name":"Business"

},

"Success":true,

"Message":null

}

Comments

  • Ensure special characters in theme names are properly encoded.
    • If theme name is "A & B", request should be sent as:
      • GetTheme?name=A%20%26%20B
  • Theme name or ID is required. If both are supplied, only the theme ID will be considered.
  • No labels