GET
/
api
/
end_users
/
{end_user_heron_id}
/
company_attributes
curl --request GET \
  --url https://app.herondata.io/api/end_users/{end_user_heron_id}/company_attributes \
  --header 'Authorization: Basic <encoded-value>'
[
  {
    "attribute": {
      "label": "<string>",
      "type": "float"
    },
    "availability": "available",
    "value": "<any>"
  }
]

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Path Parameters

end_user_heron_id
string
required

Response

200 - application/json
OK
attribute
object
availability
enum<string>
Available options:
available,
partially_available,
not_available
value
any