Vonage Number Verification API

The Number Verification API helps you verify the phone number associated with the SIM used in the device connected to the mobile data network.

This API is based on the Camara NumberVerification v.0.3.1 https://github.com/camaraproject/NumberVerification/releases/tag/v0.3.1

Please note: If you are using the Number Verification API in Germany, you must include specific wording in your application to gain consent for IP matching and processing. See here for more information.

Baixar a especificação OpenAPI
Operações disponíveis

Phone number verify

Verifies if the specified phone number (plain text or hashed format) matches the one that the user is currently using. The number verification will be done for the user that has authenticated via mobile network.

posthttps://api-eu.vonage.com/camara/number-verification/v031/verify

Autenticação

OAuth 2.0 (three_legged)

For detailed information on authentication with the Number Verification API, please refer to our authentication guide.

pages.documentation.api.security.scopes:
  • openid dpv:FraudPreventionAndDetection#number-verification-verify-read - Phone number verify and share

Corpo da solicitação
Tipo de conteúdo
application/json

Um dos
phoneNumber
string
Obrigatório
exemplo+34123456789

A phone number belonging to the user in E.164 format (starting with country code). Optionally prefixed with '+'.

Exemplo Solicitação»Phone number

{
   "phoneNumber": "+34123456789"
}
{
   "phoneNumber": "+34123456789"
}

Respostas
Tipo de conteúdo
application/json

OK

devicePhoneNumberVerified
boolean
Obrigatório

Number verification. True, if it matches

Exemplo Resposta

{
   "devicePhoneNumberVerified": true
}