Bulk create Clerk waitlist entries
Add multiple email addresses to the waitlist in one request.
← All Clerk endpoints · Capability overview
/v1/clerk/waitlist-entries/bulkhttps://api.vee3.io/v1/clerk/waitlist-entries/bulk
Add multiple email addresses to the waitlist in one request.
Authorization
Send your API key in the Authorization header:
Authorization: Bearer YOUR_API_KEY
MCP
The same capability is available as an MCP tool on Vee3 hosted MCP.
Tool name
clerk.bulk_create_waitlist_entriesParameters2 fields
clerk_instance_idstringOptionalClerk instance id (ins_...) from clerk.get_connected_accounts. Omit to use the default connected account.
waitlist_entriesstringRequiredJSON array of waitlist entry objects. Each object requires "email_address" (string) and optionally "notify" (boolean). Example: [{"email_address": "user@example.com", "notify": true}]
Response7 fields
waitlist_entriesarrayitems6 fieldsCreated or existing Clerk waitlist entries from the Backend API.
waitlist_entriesarrayitemsidstringWaitlist entry id (wle_...).
email_addressstringEmail address on the waitlist.
statusstringWaitlist status: "pending", "invited", "rejected", or "completed".
created_atintegerUnix timestamp in milliseconds when the entry was created.
updated_atintegerUnix timestamp in milliseconds when the entry was last updated.
is_lockedbooleanWhether the entry is locked during batch processing.
HTTP errors: clerk_connection_required, clerk_connection_not_found, clerk_connection_invalid, validation_error, unauthorized, payment_required