VeriFlow.me Service API
  1. Phone Verification
VeriFlow.me Service API
  • Introduction
  • API Authentication
  • Webhook
  • Prices
  • Dashboard
    • 0. Secure Login & OTP
    • 1. Main Dashboard
    • 2. Verifications
    • 3. New Verification
    • 4. Verification Detail
    • 5. Manual Review
  • Services
    • Session Request
      • Create a new Session Request
      • Update a Request
      • Fetch a single request by its ID
      • Fetch all requests for the authenticated organization
    • Standalone
      • Create a new ID Verification Request
      • Create a new Face Match Request
      • Create a new Age Estimation Request
      • Create a new Proof of Address Request
      • Create a new AML Screening Request
      • Create a new Face Search Request
      • Create a new Passive Liveness Request
      • Create a new Database Validation Request
    • Phone Verification
      • Create a new Phone Verification Request
        POST
      • Check a Phone Verification Code
        POST
    • Email Verification
      • Create a new Email Verification Request
      • Check an Email Verification Code
  1. Phone Verification

Check a Phone Verification Code

POST
/v2/phone/check

Solicitud

Autorización
Proporciona tu token bearer en el encabezado
Authorization
al realizar solicitudes a recursos protegidos.
Ejemplo:
Authorization: Bearer ********************
Parámetros del Body application/json

Ejemplos

Respuestas

🟢200Correcto
application/json
Request updated successfully
Body

🟠400Solicitud incorrecta
🟠404No encontrado
🔴500Error interno del servidor
Solicitud Ejemplo de Solicitud
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.veriflow.me/v2/phone/check' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "phoneNumber": "string",
    "code": "string",
    "id": "string",
    "duplicatedPhoneNumberAction": "NO_ACTION",
    "disposableNumberAction": "NO_ACTION",
    "voipNumberAction": "NO_ACTION"
}'
Respuesta Ejemplo de Respuesta
{
    "success": true,
    "payload": {
        "request": {
            "id": "string",
            "organizationId": "string",
            "type": "string",
            "status": "string",
            "createdAt": "string",
            "updatedAt": "string",
            "cost": 0,
            "info": {
                "metadata": null,
                "init": {
                    "phoneNumber": "string",
                    "code": "string",
                    "id": "string",
                    "duplicatedPhoneNumberAction": "NO_ACTION",
                    "disposableNumberAction": "NO_ACTION",
                    "voipNumberAction": "NO_ACTION"
                },
                "response": {
                    "status": "string",
                    "phoneNumberPrefix": "string",
                    "phoneNumber": "string",
                    "fullNumber": "string",
                    "countryCode": "string",
                    "countryName": "string",
                    "isDisposable": true,
                    "isVirtual": true,
                    "verificationMethod": "string",
                    "verificationAttempts": 0,
                    "verifiedAt": "2019-08-24T14:15:22Z",
                    "carrier": {
                        "name": "string",
                        "type": "string"
                    },
                    "lifecycle": [
                        {
                            "type": "string",
                            "timestamp": "string",
                            "details": null,
                            "fee": 0
                        }
                    ],
                    "warnings": [
                        {
                            "feature": "string",
                            "risk": "string",
                            "additionalData": null,
                            "logType": "string",
                            "shortDescription": "string",
                            "longDescription": "string"
                        }
                    ]
                }
            }
        }
    }
}
Modificado en 2025-12-06 17:47:50
Anterior
Create a new Phone Verification Request
Siguiente
Create a new Email Verification Request
Built with