logo
EasyListing
Api reference

Double Opt-In

🔄 Double Opt-In API Reference

Important: This API is only relevant if you have disabled automatic DOI emails in your project settings. You are now responsible for handling the verification process manually.


🔹 Available Options

Once you add a subscriber successfully, you will receive a doiToken in the response. You can use this token in two ways:

✅ Option 1: Use Our Hosted Verification Page

  • Send the DOI email yourself.
  • Include a link to our hosted verification page.
  • The verification is completed once the user clicks on the "Verify Email" button on the site.

How to Implement: Simply direct users to:

https://easylisting.email/doi/{doiToken}

✅ Option 2: Verify via Your Own Page

  • Send the DOI email yourself.
  • Store the doiToken from the response.
  • Use it on your page to verify the subscriber via our API.

POST /doi

Endpoint: https://api.easylisting.email/doi

🔑 No API Key is required for this route.

Request Body:

{
  "token": "doiToken-from-response"
}

Success Response:

{
  "errror": null,
  "message": "Verified Email successfully.",
  "ok": true,
  "sub": { ...subscriber data... }
}

📌 Note: Make sure to store the doiToken securely until the user verifies their email. If you need additional help, refer to our API documentation.

On this page