Update Rank

Set a user's rank in the group

post

Updates the rank of a specified user in the Roblox group associated with the API key

Authorizations
Body
useridintegerRequired

The Roblox user ID to update the rank for

Example: 112007356
rankinteger · min: 1 · max: 254Required

The new rank to assign to the user (must be a valid rank ID in the group)

Example: 10
Responses
200
Rank updated successfully
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?