Backend API
Get a list of recent user signups
cURL
curl --request GET \ --url https://api.wacht.dev/analytics/recent-signups \ --header 'Authorization: Bearer <token>'
{ "data": [ { "user_id": "<string>", "email": "jsmith@example.com", "username": "<string>", "signed_up_at": "2023-11-07T05:31:56Z", "signup_method": "email", "organization": { "id": "<string>", "name": "<string>" } } ], "total": 123, "limit": 123, "offset": 123 }
JWT Bearer token authentication using the Authorization header
1 <= x <= 100
x >= 0
Successful response
The response is of type object.
object