Use this endpoint to either suggest email addresses with /MAILSUGGEST/ or validate an email address with /DQEEMAILLOOKUP/, using the POST method.
Related Email documentation:
- Email introduction
- Email GET request
- DQEEMAILLOOKUP response
- MAILSUGGEST response
- Email Swagger documentation
Email POST request
There are two Email APIs:
- /MAILSUGGEST/: provides email suggestions based on the first name, last name and user input in the email field.
- /DQEEMAILLOOKUP/: validates an email address.
/MAILSUGGEST/
Endpoint
https://{SERVER_ADDRESS}/MAILSUGGEST/
Add the following parameters in the request body using x-www-form-urlencoded.
| Parameter | Value | Description | Mandatory/Optional |
|---|---|---|---|
| Licence | {LICENCE_CODE} |
Licence code assigned to your account. | Mandatory |
| Nom | {NAME} |
Last name entered in the form. | Mandatory; can be empty. |
| Prenom | {FIRST_NAME} |
First name entered in the form. | Mandatory; can be empty. |
{EMAIL} |
Part of the email already entered by the user. | Mandatory; can be empty. | |
| Pays | {COUNTRY_CODE} |
ISO 3-letter country code. | Optional. Default value: FRA. |
/DQEEMAILLOOKUP/
Endpoint
https://{SERVER_ADDRESS}/DQEEMAILLOOKUP/
Add the following parameters in the request body using x-www-form-urlencoded.
| Parameter | Value | Description | Mandatory/Optional |
|---|---|---|---|
| Licence | {LICENCE_CODE} |
Licence code assigned to your account. | Mandatory |
{EMAIL} |
Email address to validate. | Mandatory | |
| Rectify | {RECTIFY} |
y to propose a domain correction when the entered domain is unknown; n otherwise. |
Optional. Default value: n. |
| extendedsyntax | {SYNTAX} |
y to accept email addresses with extended syntax; n to limit checks to standard email addresses. |
Optional. Default value: n. |
| checkuser | {CHECKUSER} |
y to check the part before the @ sign; n to check only the domain. |
Optional. Default value: y. |
| TimeOut | {TIME} |
Maximum query time for data verification, in seconds. Example: 0.5 for 500 ms. |
Optional |
Related to