Versions Compared

Key

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

This endpoint allows you to get a list of all topics with hierarchy

Table of Contents

Data Types

Object Topic

Field nameTypeDescription
IdintIdentifier
NamestringDisplay name
ParentIDintid of parent in the hierarchy
IsLeafboolindicator if it's a topic

Object Topics

Field nameTypeDescription
TopicsList<Topic>list of all topics

Request/Response

HTTP Request

GET https://sentry.bombora.com/v2/cmp/GetAllTopicsHierarchy

HTTP Request Header

Authorization: Basic {AUTH_KEY}

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

}

Comments