Edit in GitHubLog an issue
B2B feature. Learn more

isCompanyEmailAvailable query

The isCompanyEmailAvailable query checks whether the specified email is valid for company registration. The specified email can be the same as an existing customer or company administrator. If the email matches an existing company email, the query returns a false value.

This query requires a valid customer authentication token.

Syntax

isCompanyEmailAvailable ( email String! ) IsCompanyEmailAvailableOutput

Reference

The isCompanyEmailAvailable reference provides detailed information about the types and fields defined in this query.

Example usage

The following example checks whether the email address roni_cost@example.com can be used to register a company.

Request:

Copied to your clipboard
query{
isCompanyEmailAvailable(email: "roni_cost@example.com"){
is_email_available
}
}

Response:

Copied to your clipboard
{
"data": {
"isCompanyEmailAvailable": {
"is_email_available": true
}
}
}
  • Privacy
  • Terms of Use
  • Do not sell or share my personal information
  • AdChoices
Copyright © 2024 Adobe. All rights reserved.