POST
/
v2
/
verified-resources
/
emails
/
verification-code
/
request
curl --request POST \
  --url https://api.cal.com/v2/verified-resources/emails/verification-code/request \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: application/json' \
  --data '{
  "email": "[email protected]"
}'
{
  "status": "success"
}

Headers

Authorization
string
required

value must be Bearer <token> where <token> is api key prefixed with cal_ or managed user access token

Body

application/json
email
string
required

Email to verify.

Response

200 - application/json
status
enum<string>
required
Available options:
success,
error
Example:

"success"