Profile

Phone Number Verify

post
https://api.linode.com/v4/profile/phone-number/verify

Verify a phone number by confirming the one-time code received via SMS message after accessing the Phone Verification Code Send (POST /profile/phone-number) command.

  • Verification codes are valid for 10 minutes after they are sent.

  • Only the same User that made the verification code request can use that code with this command.

Once completed, the verified phone number is assigned to the User making the request. To change the verified phone number for a User, first use the Phone Number Delete (DELETE /profile/phone-number) command, then begin the verification process again with the Phone Verification Code Send (POST /profile/phone-number) command.

Request Body Schema

otp_code
Required
string

The one-time code received via SMS message after accessing the Phone Verification Code Send (POST /profile/phone-number) command.

Request Samples

curl -H "Content-Type: application/json" \
  -H "Authorization: Bearer $TOKEN" \
  -X POST -d '{
    "otp_code": "123456"
  }' \
  https://api.linode.com/v4/profile/phone-number/verify

Response Samples

{}

Responses

200: Phone number verification successful.

default: Error

errors
array of objects
reason
string

What happened to cause this error. In most cases, this can be fixed immediately by changing the data you sent in the request, but in some cases you will be instructed to open a Support Ticket or perform some other action before you can complete the request successfully.

field
string

The field in the request that caused this error. This may be a path, separated by periods in the case of nested fields. In some cases this may come back as "null" if the error is not specific to any single element of the request.