Appearance
Verify email can be registered
About 171 wordsLess than 1 minute
apiUsersRegister
2025-05-19
MethodPOST
Request URL
/plugin/datafor-auth/api/user/isRightEmailForAddAuthorization
Authentication is not required to use this API.
Content Typeapplication/x-www-form-urlencoded
Description
This API verifies whether an email address can be used for registration. It checks if the provided email is valid and not already registered in the system.
Request Example
email: a@a.comRequest Schema
| Name | Location | Type | Required | Description |
|---|---|---|---|---|
email | body | string | Yes | The email address to be verified for registration eligibility. |
Response Examples
Successful Response (HTTP 200)
{
"success": true
}Failure Response (Example)
{
"msg": "Email is already registered",
"success": false
}HTTP Responses
| HTTP Status Code | Meaning | Description | Data Schema |
|---|---|---|---|
| 200 | OK | Request was successful | Inline |
Response Data Schema (HTTP 200)
| Name | Type | Required | Description |
|---|---|---|---|
success | boolean | Yes | Indicates whether the email is available for registration. |
msg | string | No | Response message (only present when the email cannot be used). |