checkAccessByEmail
Check site access for a list of emails
POST /user/access/check-access-by-email HTTP/1.1Parameters
{}Response Schema
{
"type": "object",
"properties": {
"emailsWithoutAccess": {
"type": "array",
"items": {
"type": "string"
},
"description": "List of emails that do not have access to site."
},
"invalidEmails": {
"type": "array",
"items": {
"type": "string"
},
"description": "List of invalid emails provided in the request."
}
}
}