LEZ USER API

The documentation of the user WebAPI of the rhythm videogame LEZ

Is user restricted

[GET] /LEZ/User/IsUserRestricted/v1

This will return a JSON with information to see if a user/player has a restriction.

NOTE: This API could take some seconds to get the result.

Parameters:

Result example 1:

{

    "Result": "Success",

    "SteamID": 76561198405934444,

    "DoesUserHaveRestrictions": false

}

Result example 2:

{

    "Result": "Success",

    "SteamID": 76561198405934444,

    "DoesUserHaveRestrictions": true,

    "Restrictions": {

        "RestrictedFromLeaderboards": true,

        "RestrictedFromMultiplayer": false,

        "RestrictedFromLEZPlus": false,

        "RestrictedFromReleaseBeatmaps": false,

        "RestrictedFromShowProfile": false,

        "RestrictedFromAllTheGame_Ban": false

    }

}