check

Available Since: V1

Check for the existence of a username or email address. 

Request

GET api/1/user/check/
Parameter Description
field The field to check for the pressence of value, one of: 'username' or 'email'.
value The value to test for, either a username or email address.

Found Response (200)

{
    "result": true
}

Returned if the username or email address is found in the system.

Not Found Response (404)

{
    "result": false
}

Returned if the username or email address can't be found in the system.




TOP