POST
/
auth
/
identifier-availability
curl --request POST \
--url https://{deploymentHost}/auth/identifier-availability \
--header 'Content-Type: application/json' \
--data '{
"email": "newuser@example.com"
}'
{
"status": 200,
"message": "",
"data": {
"available": true,
"identifier_type": "email",
"identifier": "newuser@example.com"
},
"session": {
"signin_attempts": [],
"signins": [],
"signup_attempts": [],
"active_signin": null
},
"errors": []
}

Authorizations

__session
string
cookie
required

Session cookie authentication for production deployments. The session token is automatically set as an HTTP-only, secure cookie.

Body

application/json

Response

200
application/json

Availability check completed

The response is of type object.