reject()
Rejects a waitlist entry by ID. Returns a WaitlistEntry representing the rejected entry.
function reject(id: string): Promise<WaitlistEntry>- Name
id- Type
string- Description
The ID of the waitlist entry to reject.
const waitlistId = 'waitlist_123'
const response = await clerkClient.waitlistEntries.reject(waitlistId)Backend API (BAPI) endpoint
This method in the SDK is a wrapper around the BAPI endpoint POST/waitlist_entries/{waitlist_entry_id}/reject. See the BAPI reference for more information.
Feedback
Last updated on
Edit on GitHub