Description: Add money to a player wallet
Ratelimit: 5 per 10s
Permission: wallet.add

Required parameters
Name Type Description
serverId number The server id
uuid string The player uuid
Required body
Key Type Description Default Required
amount number The ammount of money to add to the player (max: 1000, max decimal places: 2)
reason string The reason of the add (min length: 20, max length: 255)
Available codes
Status Code Description
200 OK The request has been successfully completed
400 BAD_BODY The request body is invalid
400 INVALID_AMOUNT The value amount doesn't follow the requirements
400 INVALID_REASON The value reason doesn't follow the requirements
400 INVALID_SERVER_ID The server id is invalid
400 MISSING_BODY The request does not have a body
401 UNAUTHORIZED The token is invalid or expired
403 ACCESS_DENIED The token or the author does not have the required permissions
403 DISCORD_CONNECTION_REQUIRED You need a Discord account link to your Steam Account to access to the route
404 PLAYER_NOT_FOUND The uuid doesn't refer to an existing player
404 SERVER_NOT_FOUND The server does not exist
500 INTERNAL_ERROR An internal error has occured
Response structure
  • code: "OK"

Description: Remove money from a player wallet
Ratelimit: 5 per 10s
Permission: wallet.remove

Required parameters
Name Type Description
serverId number The server id
uuid string The player uuid
Required body
Key Type Description Default Required
amount number The ammount of money to remove from the player (max: 100, max decimal places: 2)
reason string The reason of the remove (min length: 20, max length: 255)
Available codes
Status Code Description
200 OK The request has been successfully completed
400 BAD_BODY The request body is invalid
400 INVALID_AMOUNT The value amount doesn't follow the requirements
400 INVALID_REASON The value reason doesn't follow the requirements
400 INVALID_SERVER_ID The server id is invalid
400 MISSING_BODY The request does not have a body
400 NOT_ENOUGH_MONEY The player doesn't have enough money
401 UNAUTHORIZED The token is invalid or expired
403 ACCESS_DENIED The token or the author does not have the required permissions
403 DISCORD_CONNECTION_REQUIRED You need a Discord account link to your Steam Account to access to the route
404 PLAYER_NOT_FOUND The uuid doesn't refer to an existing player
404 SERVER_NOT_FOUND The server does not exist
500 INTERNAL_ERROR An internal error has occured
Response structure
  • code: "OK"

Description: Set the money of a player wallet
Ratelimit: 5 per 10s
Permission: wallet.set

Required parameters
Name Type Description
serverId number The server id
uuid string The player uuid
Required body
Key Type Description Default Required
amount number The ammount of money to set to the player (max: 1000, max decimal places: 2)
reason string The reason of the set (min length: 20, max length: 255)
Available codes
Status Code Description
200 OK The request has been successfully completed
400 BAD_BODY The request body is invalid
400 INVALID_AMOUNT The value amount doesn't follow the requirements
400 INVALID_REASON The value reason doesn't follow the requirements
400 INVALID_SERVER_ID The server id is invalid
400 MISSING_BODY The request does not have a body
401 UNAUTHORIZED The token is invalid or expired
403 ACCESS_DENIED The token or the author does not have the required permissions
403 DISCORD_CONNECTION_REQUIRED You need a Discord account link to your Steam Account to access to the route
404 PLAYER_NOT_FOUND The uuid doesn't refer to an existing player
404 SERVER_NOT_FOUND The server does not exist
500 INTERNAL_ERROR An internal error has occured
Response structure
  • code: "OK"