Skip to main content
POST
/
v2
/
bookings
/
verification
/
email
/
verify-code
Verify email with code
curl --request POST \
  --url https://api.cal.com/v2/bookings/verification/email/verify-code \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "email": "user@example.com",
  "code": "123456"
}
'
{
  "status": "success",
  "data": {
    "verified": true
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
email
string
required
Example:

"user@example.com"

code
string
required
Example:

"123456"

Response

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

"success"

data
object
required