Customers Controller

Check if customer exists with email

Check if a customer with the given email address exists

post/customers/check-email

Request body

customerEmailstring required

Email address to check

Example request

{
  "customerEmail": "customer@example.com"
}

Response

Email check completed successfully

existsboolean required

Whether the email exists

customerEmailstring required

Email address that was checked

Example response

{
  "exists": true,
  "customerEmail": "customer@example.com"
}

Changes

No recorded changes to this endpoint across all 1 revision of this API.