GET
/
analytics
/
recent-signups
Get Recent Signups
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
}

Authorizations

Authorization
string
header
required

JWT Bearer token authentication using the Authorization header

Query Parameters

limit
integer
default:20
Required range: 1 <= x <= 100
offset
integer
default:0
Required range: x >= 0

Response

Successful response

The response is of type object.