List all waitlist entries — pending first, then invited. Admin only.
cURL
curl --request GET \ --url https://api.example.com/api/admin/waitlist \ --header 'Authorization: Bearer <token>'
[ { "id": 123, "email": "<string>", "name": "<string>", "status": "<string>", "created_at": "2023-11-07T05:31:56Z", "invited_at": "2023-11-07T05:31:56Z" } ]
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Successful Response