getCheckedEmail method

The method returns an object with confirmed and unconfirmed sender's addresses. Unconfirmed sender's address is the address to which the message was sent with a link to confirm the return address, but the confirmation link wasn't clicked.

To verify the return address, you can use the validateSender method.

Principle of use

Syntax and URL to call the method
getCheckedEmail (string login, string email)
https://api.selzy.com/en/api/getCheckedEmail?format=json&api_key=KEY&login=LOGIN&email=EMAIL
Arguments
api_key * API access key.
login * Login of the user for whom the check is performed.
email It is set to receive the confirmation status at the specified address (only one address can be set).

If you skip, the method will return statuses for all confirmed/unconfirmed addresses.

Return value
Example of a successful request:

{
  "result": [
    {
      "email": "email@gmail.com",
      "name": "name",
      "is_checked": false
    }
  ]
}

where:

email — the email being checked;
name — sender's name;
is_checked — the check status. True — if the address is confirmed, false — if the address is not confirmed.

Example of a request completed with errors:

{
  "error": "message",
  "code": "code"
}

Did we answer to your question?

0
0