Email

Endpoints for email verification

Perform bulk credential issuance based on the valid email addresses

post

This endpoint performs bulk credential issuance based on the valid email addresses.

Authorizations
Body
Responses
200
Email verification successful
application/json
post
POST /api/v1/emails/verify HTTP/1.1
Host: 
x-api-key: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 349

{
  "emails": [
    {
      "email": "replaceme@replaceme!example.com",
      "schema_id": "KT4LtL7HEMePqQSyKVof7g:2:Email:1.0",
      "time_to_accept": 2,
      "attributes": [
        {
          "name": "address",
          "value": "your address here"
        },
        {
          "name": "domain",
          "value": "your domain here"
        },
        {
          "name": "verified_at",
          "value": "your timestamp verified_at here"
        },
        {
          "name": "local_part",
          "value": "your local_part here"
        }
      ]
    }
  ]
}
{
  "emailsSuccess": [
    "text"
  ],
  "emailsFailure": [
    "text"
  ],
  "invalidEmails": [
    "text"
  ]
}

Was this helpful?