getEmailAddress()
Retrieves a single EmailAddress
.
function getEmailAddress(emailAddressId: string): Promise<EmailAddress>
- Name
emailAddressId
- Type
string
- Description
The ID of the email address to retrieve.
const emailAddressId = 'idn_123'
const response = await clerkClient.emailAddresses.getEmailAddress(emailAddressId)
Backend API (BAPI) endpoint
This method in the SDK is a wrapper around the BAPI endpoint GET/email_addresses/{email_address_id}
. See the BAPI reference for more information.
Feedback
Last updated on