VeriFlow.me Service API
  1. Email 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
      • Check a Phone Verification Code
    • Email Verification
      • Create a new Email Verification Request
        POST
      • Check an Email Verification Code
        POST
  1. Email Verification

Create a new Email Verification Request

POST
/v2/email/send

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

🟢201Creado
application/json
Request created successfully
Body

🟠400Solicitud incorrecta
🔴500Error interno del servidor
Solicitud Ejemplo de Solicitud
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.veriflow.me/v2/email/send' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "email": "string",
    "metadata": null,
    "options": {
        "codeSize": 0,
        "locale": "string"
    },
    "signals": {
        "ip": "string",
        "deviceId": "string",
        "userAgent": "string"
    }
}'
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,
                "response": {
                    "status": "string",
                    "reason": "string"
                },
                "init": {
                    "email": "string",
                    "metadata": null,
                    "options": {
                        "codeSize": 0,
                        "locale": "string"
                    },
                    "signals": {
                        "ip": "string",
                        "deviceId": "string",
                        "userAgent": "string"
                    }
                }
            }
        }
    }
}
Modificado en 2025-12-05 15:19:21
Anterior
Check a Phone Verification Code
Siguiente
Check an Email Verification Code
Built with