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 2 Next »

This endpoint allows you to get a list of themes created after given date

Data Types

Object Topic

Field nameTypeDescription
IdintId of topic
NamestringDisplay name
CreateDatestringCreate date of topic in mm/dd/yyyy format

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

Path Parameters

Parameter Name
Type
Description
datestringThemes created after this date will be returned

Note: See comments for date formatting

HTTP Request

GET https://sentry.bombora.com/v2/Topic/ThemesAfterDate?date=06012014

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":1500622,

"Name":"Business",

"CreateDate":"06/03/2014"

},

{

"Id":1500623,

"Name":"Consumer Technology",

"CreateDate":"06/03/2014"

},

.....

],

"Success":true,

"Message":null

}

Comments

  • Accepted date formats
    • mmddyyyy
    • mm/dd/yyyy
    • mm-dd-yyyy
    • yyyy/dd/mm
    • yyyy-dd-mm
  • No labels