Versions Compared

Key

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

This endpoint allows you to get a list of topics

...

Field nameTypeDescription
IdintId of topic
Namestring

Display name

Description*stringTopic description

Object Topics

...

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
}

...