Bulk Email Verify

post

/api/v3/email/batch/verify

Batch Email Verify: This endpoint enables you to verify a batch of email addresses. That is, it confirms whether the provided email addresses are valid. After verification, the service returns details about the email addresses. You can pass upto 10,000 email addresses for verification.
Input and Output: A JSON object containing a list of items, which is in turn a JSON map of fields. All field values are represented as strings.
Cost: The user is charged for each email record (unless the API is not accessible).
Functionality: Each input is a JSON packet with a list of email IDs. The output contains the details of the job submitted. The job ID present in the output is used to track the progress. The fields are described in this table.


Request Payload Attribute NameExampleDescription
Emailsa@b.comEmail addresses to be verified.

Response Payload Attribute NameExampleDescription
jobId111111The job ID for tracking the email verify job.
submittedOn2023-11-22 10:56:12.000985The time stamp when the job was submitted.
submittedBy1000The user who submitted the job.
statusPendingStatus of the job.

Example Request {"Emails": ["abc.def@oracle.com","xyz@oracle.com"]}

Example Response {"jobId":"111111","submittedOn":"2023-11-22 10:56:12.000985","submittedBy":"1000","status":"Pending"}

Request

There are no request parameters for this operation.

Supported Media Types
Request Body - application/json; charset=UTF-8 ()
Root Schema : schema
Type: object
Show Source
Nested Schema : Emails
Type: array
Show Source
Back to Top

Response

Supported Media Types

200 Response

Success
Body ()
Root Schema : schema
Type: object

401 Response

Unauthorized

403 Response

Forbidden

500 Response

An unexpected error occurred during the request.
Back to Top