Retrieve a list of waitlist entries for the instance. Entries are ordered by creation date in descending order by default. Supports filtering by email address or status and pagination with limit and offset parameters.
List of waitlist entries
{- "data": [
- {
- "object": "waitlist_entry",
- "id": "string",
- "email_address": "user@example.com",
- "status": "pending",
- "created_at": 0,
- "updated_at": 0,
- "invitation": {
- "object": "invitation",
- "id": "string",
- "email_address": "user@example.com",
- "public_metadata": { },
- "revoked": false,
- "status": "pending",
- "url": "string",
- "expires_at": 0,
- "created_at": 0,
- "updated_at": 0
}
}
], - "total_count": 0
}
Creates a new waitlist entry for the given email address. If the email address is already on the waitlist, no new entry will be created and the existing waitlist entry will be returned.
A Waitlist Entry
Request was not successful
Invalid request parameters
{- "email_address": "string",
- "notify": true
}
{- "object": "waitlist_entry",
- "id": "string",
- "email_address": "user@example.com",
- "status": "pending",
- "created_at": 0,
- "updated_at": 0,
- "invitation": {
- "object": "invitation",
- "id": "string",
- "email_address": "user@example.com",
- "public_metadata": { },
- "revoked": false,
- "status": "pending",
- "url": "string",
- "expires_at": 0,
- "created_at": 0,
- "updated_at": 0
}
}