User counts by subscription status plus daily signups within the window.
cURL
curl --request GET \ --url https://api.example.com/api/admin/analytics/users \ --header 'Authorization: Bearer <token>'
{ "total": 123, "trial": 123, "active": 123, "churned": 123, "activation_rate_pct": 123, "signups_by_day": [ { "date": "<string>", "count": 123 } ] }
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
7 <= x <= 30
Successful Response
Response for GET /api/admin/analytics/users.
Show child attributes