v20

latestOpenAPI 3.1.0raw.githubusercontent.com2026-08-01970424.3 KB
Contact Channels

Send contact channel verification code

Send a code to the user's contact channel for verifying the contact channel.

post/contact-channels/{user_id}/{contact_channel_id}/send-verification-code

Path parameters

user_idstring required

The user to send the verification code to.

Example:me

The user to send the verification code to.

contact_channel_idstring required

The contact channel to send the verification code to.

Example:b3d396b8-c574-4c80-97b3-50031675ceb2

The contact channel to send the verification code to.

Request body

callback_urlstring required

The base callback URL to construct a verification link for the verification e-mail. A query parameter code with the verification code will be appended to it. The page should then make a request to the /contact-channels/verify endpoint.

Example request

{
  "callback_url": "https://example.com/handler/email-verification"
}

Response

Successful response

successboolean required

Always equal to true.

Example response

{
  "success": true
}