Enum - Optional Attribute Names

Full Url

Arguments

  • token (required)

Info

Some brand attribute names are specific to entity type, country, or other yet to be defined scenarios. For example, the optional attribute name: 'taxExemptStatus' is specific to brand of NON_PROFIT entity type. A '527Status' is unique to US-only political advocacy. The list of optional attribute names returned by this API endpoint will expand as new optional attribute are supported.
Each optional attribute name is defined with a data type. Currently the following data types are supported:
  • INTEGER
  • DECIMAL
  • STRING Maximum length of 512
  • BOOLEAN

Example Success

{
code: 200,
status: "success",
data: [
{
"id":"governmentEntity",
"data_type":"BOOLEAN",
"description":"Confirmation that the brand is a closely affiliated, generally by government ownership or control, with federal, state or local governments."
},
{
"id":"politicalCommitteeLocale",
"data_type":"STRING",
"description":"Political committee Locale. Possible values are federal, state, local and tribal."
},
{
"id":"section527",
"data_type":"BOOLEAN",
"description":"527 group is a type of U.S. tax-exempt organization organized under Section 527 of the U.S. Internal Revenue Code."
},
....
]
}