Get Categories by Theme
This endpoint allows you to get a list of categories in a given theme
Data Types
Object Topic
Field name | Type | Description |
---|---|---|
Id | int | Id of topic |
Name | string | Display name |
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 |
---|---|---|
theme_id | int | Categories of this theme ID will be returned |
HTTP Request
GET https://sentry.bombora.com/v2/Topic/CategoriesByTheme?theme_id=1500622
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":1500512,
"Name":"Compliance & Governance"
},
{
"Id":1500513,
"Name":"Funding & Loans"
},
{
"Id":1500515,
"Name":"Operations"
},
.....
],
"Success":true,
"Message":null
}
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.