POST
/
v2
/
verified-resources
/
phones
/
verification-code
/
request
curl --request POST \
  --url https://api.cal.com/v2/verified-resources/phones/verification-code/request \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: application/json' \
  --data '{
  "phone": "+372 5555 6666"
}'
{
  "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
phone
string
required

Phone number to verify.

Example:

"+372 5555 6666"

Response

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

"success"