Get Meta Data

This endpoint allows you to get all Meta Data.

Data Types

Response Object

Field nameTypeDescription
MetasMetaData[]All MetaData
SuccessboolIndicates whether a request was successful (true) or not (false)
MessagestringError message if success is false

MetaData Object

Field nameTypeDescription
Namestring Type of MetaData
Valuesstring[]List of MetaData values of that type

Request/Response

HTTP Request

GET https://sentry.bombora.com/v2/Surge/GetMetaData

HTTP Request Header

Authorization: Basic {AUTH_KEY}

Referer: bombora.com

HTTP Response

If successful, the response contains all Company Sizes, all Industries, and all Metros.

{

"Metas":

[

{

"Name": "Industry",
"Values":
[

"Agriculture",
"Agriculture > Animals & Livestock",
...

]

},

{

"Name": "Metro Area",
"Values":
[

"Portland, ME / Auburn, NH",
"New York Metropolitan Area, NY",
...

]

},

{

"Name": "Company Size",
"Values":
[

"Micro (1 - 9 Employees)",
"Small (10 - 49 Employees)",
...

]

}

]

"Success":true,

"Message":null

}

Comments