/
Get Topics Created After Date
Get Topics Created After Date
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 |
Description | string | Description of topic |
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
Path Parameters
Parameter Name | Type | Description |
---|---|---|
date | string | Topics created after this date will be returned |
Note: See comments for date formatting
HTTP Request
GET https://sentry.bombora.com/v2/Topic/TopicsAfterDate?date=01012015
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 objects.
{
"Topics":
[
{
"Id":1501126,
"Name":"Acura",
"CreateDate":"02/02/2015",
"Description":"Car manufacturer"
},
{
"Id":1501127,
"Name":"Aston Martin",
"CreateDate":"02/02/2015",
"Description":"Car manufacturer"
},
.....
],
"Success":true,
"Message":null
}
Comments
- Accepted date formats
- mmddyyyy
- mm/dd/yyyy
- mm-dd-yyyy
- yyyy/dd/mm
- yyyy-dd-mm
Copyright © 2014-2020 by Bombora, Inc. All rights reserved. No part of this publication may be reproduced, distributed, or transmitted in any form or by any means without the prior written permission of Bombora, Inc.
, multiple selections available,
Related content
Get My Topics
Get My Topics
More like this
Get Categories Created after Date
Get Categories Created after Date
More like this
Get Topics by Category
Get Topics by Category
More like this
Get Themes Created After Date
Get Themes Created After Date
More like this
Get Topic by Name or ID
Get Topic by Name or ID
More like this
Get Topic Suggestions
Get Topic Suggestions
More like this