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

« Previous Version 16 Next »

This endpoint allows you to get a list of topics

* Will become available after new release at 3:00PM PST on February 5th, 2018.

Data Types

Object Topic

Field nameTypeDescription
IdintId of topic
Namestring

Display name

DescriptionstringTopic description

Object Topics

Field nameTypeDescription
TopicsTopic[]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"
      "Description":"A computer program that helps an investor get information about and manage investments."
    },
    {
      "Id":1333532,
      "Name":"Local Government"
      "Description":"The administration of a particular town, county, or district, with representatives elected by those who live there."
    },
    {
      "Id":1333536,
      "Name":"Legal"
      "Description":"Of, based on, or concerned with the law"
    },
    .................
  ],
  "Success":true,
  "Message":null
}

Comments

  • No labels