This endpoint allows you to get a list of topics created after given date
Data Types
Object Topic
Field name | Type | Description |
---|---|---|
Id | int | Id of topic |
Name | string | Display name |
CreateDate | string | Create date of topic in mm/dd/yyyy format |
Response Object
Field name | Type | Description |
---|---|---|
Topics | Topic[] | List of Topic objects |
Success | bool | Indicates whether a request was successful (true) or not (false) |
Message | string | Error message if success is false |
Request/Response
HTTP Request
GET https://sentry.bombora.com/v2/Topic/TopicsAfterDate?date=01012015
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":1501126,
"Name":"Acura",
"CreateDate":"02/02/2015"
},
{
"Id":1501127,
"Name":"Aston Martin",
"CreateDate":"02/02/2015"
},
.....
],
"Success":true,
"Message":null
}
Comments
- Accepted date formats
- mmddyyyy
- mm/dd/yyyy
- mm-dd-yyyy
- yyyy/dd/mm
- yyyy-dd-mm