Create Clerk email address
Create a new email address for a Clerk user.
← All Clerk endpoints · Capability overview
/v1/clerk/email-addresseshttps://api.vee3.io/v1/clerk/email-addresses
Create a new email address for a Clerk user.
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.create_email_addressParameters5 fields
clerk_instance_idstringOptionalClerk instance id (ins_...) from clerk.get_connected_accounts. Omit to use the default connected account.
user_idstringRequiredClerk user id (user_...) to retrieve or modify.
email_addressstringRequiredEmail address to create for the user.
verifiedbooleanOptionalWhen true, the email address is created as verified.
primarybooleanOptionalWhen true, set this email as the user's primary email address.
Response9 fields
email_addressobject8 fieldsCreated Clerk email address summary.
email_addressobjectidstringClerk email address id (idn_...).
user_idstringClerk user id (user_...) that owns this email address.
email_addressstringEmail address value.
verification_statusstringVerification status (e.g. verified, unverified, failed).
verifiedbooleanWhether the email address is verified.
primarybooleanWhether this is the user's primary email address.
created_atintegerUnix timestamp in milliseconds when the email address was created.
updated_atintegerUnix timestamp in milliseconds when the email address was last updated.
HTTP errors: clerk_connection_required, clerk_connection_not_found, clerk_connection_invalid, validation_error, unauthorized, payment_required