GET
/
user-waitlist
Get User Waitlist
curl --request GET \
  --url https://api.wacht.dev/user-waitlist \
  --header 'Authorization: Bearer <token>'
{
  "total": 100,
  "page": 1,
  "per_page": 20,
  "total_pages": 5,
  "data": [
    {
      "id": "<string>",
      "email": "jsmith@example.com",
      "requested_at": "2023-11-07T05:31:56Z",
      "status": "pending"
    }
  ]
}

Authorizations

Authorization
string
header
required

JWT Bearer token authentication using the Authorization header

Query Parameters

page
integer
default:1
per_page
integer
default:20
status
enum<string>
Available options:
pending,
approved,
rejected

Response

Successful response

The response is of type object.