clerk.list_waitlist_entries
List waitlist entries in a connected Clerk application.
Call clerk.get_connected_accounts first. Pass clerk_instance_id to target a specific connection, or omit it to use the default account.
Returns waitlist entry summaries and total_count.
Cost = 5 tokens.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of waitlist entries to return (1–500). | |
| query | No | Filter by email address or waitlist entry id. | |
| offset | No | Number of waitlist entries to skip before returning results. | |
| status | No | Optional status filter: "pending", "invited", "rejected", or "completed". | |
| order_by | No | Sort order: created_at, email_address, or invited_at with optional + or - prefix. Defaults to -created_at. | |
| clerk_instance_id | No | Clerk instance id (ins_...) from clerk.get_connected_accounts. Omit to use the default connected account. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| total_count | No | Total number of waitlist entries on this page. | |
| waitlist_entries | No | Waitlist entries returned for the requested page. |