Get Account History
GET /v1/account/history
Returns a time-series of account counts for a tenant over a given date range. Each item represents a single calendar day with the net change for that day (value) and the cumulative total accounts at end of day (total). Use query parameters (e.g., tenant, start, end, timezone) to scope the series; the response is always ordered by date ascending.
Query Parameters
days- Parameter for days
Request Example
GET /v1/account/history?days=30
Response Example
[
{
"date": "2025-09-21",
"value": 0,
"total": 2
},
{
"date": "2025-09-22",
"value": 0,
"total": 2
},
{
"date": "2025-10-20",
"value": 1,
"total": 3
}
]