curl --request POST \
--url https://api.cal.com/v2/teams/{teamId}/verified-resources/emails/verification-code/request \
--header 'Authorization: <authorization>' \
--header 'Content-Type: application/json' \
--data '{
"email": "[email protected]"
}'
{
"status": "success"
}
Sends a verification code to the Email
curl --request POST \
--url https://api.cal.com/v2/teams/{teamId}/verified-resources/emails/verification-code/request \
--header 'Authorization: <authorization>' \
--header 'Content-Type: application/json' \
--data '{
"email": "[email protected]"
}'
{
"status": "success"
}
value must be Bearer <token>
where <token>
is api key prefixed with cal_ or managed user access token
The response is of type object
.
Was this page helpful?