Skip to content

Latest commit

 

History

History
36 lines (28 loc) · 856 Bytes

check-username-availability.md

File metadata and controls

36 lines (28 loc) · 856 Bytes

Check Username Availability

Confirm if a username is available.

Name Requires Auth Permission Setting
checkUsernameAvailability Yes None

Payload Parameters

Argument Example Required Description
username john.wood Required The username you are checking for.

Example call

{
    "msg": "method",
    "method": "checkUsernameAvailability",
    "id": "117",
    "params": [
        "funke"
    ]
}

Example Response

{
    "msg": "result",
    "id": "117",
    "result": true
}