Retrieve an Email Validation

GET - https://api.verifik.co/v2/email-validations/{id}

Service to bring an specific email validation using it's ID.

Headers

NameValue

Content-Type

application/json

Authorization

Bearer <token>

Query Parameters

NameTypeDescription

id

string

ID of the person that you want to bring the information.

Response

{
    "data": {
        "validationMethod": "verificationCode",
        "_id": "63505a2cf61d5a8d0f812317d",
        "client": "623b6317fe5fd118be9f566",
        "project": "635047538c4cca6fdbd09237",
        "MATiD": null,
        "status": "validated",
        "extraParams": [],
        "type": "onboarding",
        "requires2FA": false,
        "deleted": false,
        "projectFlow": "635059838c4cca6fdbd01828",
        "email": "ejemplo@verifik.co",
        "emailData": {
            "projectName": "Nicolas",
            "contactEmail": "ayuda@verifik.co",
            "template": "onboarding"
        },
        "otp": "$2a$45$zSS9ubgb2jGtHlPPjrkareD8k2clcplqB7a4T3.98D4idumUOiJ4.",
        "expiresAt": "2022-10-19T20:27:28.000Z",
        "redirectUrl": "verifik.co",
        "webhookUrl": null,
        "updatedAt": "2022-10-19T20:13:14.199Z",
        "createdAt": "2022-10-19T20:12:28.613Z",
        "__v": 0
    }
}

Last updated