Skip to content
This repository has been archived by the owner on Jun 27, 2024. It is now read-only.

Latest commit

 

History

History
40 lines (30 loc) · 1.14 KB

check-username-availability.md

File metadata and controls

40 lines (30 loc) · 1.14 KB

Check Username Availability

{% hint style="info" %} This method is planned to be removed by 7.0.0. Use the /users.checkUsernameAvailability endpoint instead. {% endhint %}

Confirm if a username is available.

Name Requires Auth
checkUsernameAvailability Yes

Payload Parameters

ArgumentExampleRequiredDescription
usernamejohn.woodRequiredThe username you are checking for.

Example call

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

Example Response

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