GET
/
api
/
end_users
/
{end_user_id_or_heron_id}
/
combined_financials
curl --request GET \
  --url https://app.herondata.io/api/end_users/{end_user_id_or_heron_id}/combined_financials \
  --header 'Authorization: Basic <encoded-value>'
{
  "by_category": [
    {
      "label": "<string>",
      "time_period_label": "<string>",
      "value": 123
    }
  ],
  "by_sub_category": [
    {
      "label": "<string>",
      "time_period_label": "<string>",
      "value": 123
    }
  ],
  "currency": "<string>",
  "grouping": "by_month",
  "metrics": [
    {
      "label": "<string>",
      "time_period_label": "<string>",
      "value": 123
    }
  ]
}

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_id_or_heron_id
string
required

Query Parameters

grouping
enum<string> | null
Available options:
by_month,
by_quarter,
by_year

Response

200 - application/json
OK
by_category
object[]
by_sub_category
object[]
currency
string
grouping
enum<string>
Available options:
by_month,
by_quarter,
by_year
metrics
object[]