Update Rank
Updates the rank of a specified user in the Roblox group associated with the API key
Authorizations
Body
useridintegerRequiredExample:
The Roblox user ID to update the rank for
112007356
rankinteger · min: 1 · max: 254RequiredExample:
The new rank to assign to the user (must be a valid rank ID in the group)
10
Responses
200
Rank updated successfully
application/json
400
Bad request - invalid input parameters
application/json
401
Unauthorized - invalid or missing API key
application/json
403
Forbidden - insufficient permissions to change rank
application/json
404
Not Found - user or rank not found
application/json
429
Too Many Requests - rate limit exceeded
application/json
500
Internal server error or Roblox API error
application/json
post
POST /admin/api/ranking/setRank HTTP/1.1
Host: bloxtech.tech
Authorization: Bearer string
Content-Type: application/json
Accept: */*
Content-Length: 30
{
"userid": 112007356,
"rank": 10
}
{
"success": true,
"message": "Rank updated successfully",
"data": {
"userId": 112007356,
"rank": 10
}
}
Last updated
Was this helpful?