Rank
Change a Roblox user's rank through the Roblox group and Open Cloud account connected to a Panora workspace.
Endpoint
POST https://api.panora.cc/v2/rank
Changes a Roblox user's rank in the Roblox group linked to the workspace. The endpoint validates the workspace, verifies the API key, checks usage limits, and uses the connected workspace management account/Open Cloud setup.
curl -X POST https://api.panora.cc/v2/rank -H "Authorization: Bearerpc_live_your_workspace_key" -H "Content-Type: application/json" -d '{ "robloxUserId": 2691895016, "rank": 50, "reason": "Manual API rank change" }'
Authentication
Use the main workspace key or any active additional key. Expired additional keys are rejected automatically. Resetting the main key requires replacing any loader scripts that rely on that key.
Authorization: Bearer pc_live_your_workspace_keyRequest body
Responses
Successful responses include a request identifier and result details. Failed responses include a clear message and still show in API logs with the response result.
{
"success": true,
"requestId": "req_...",
"message": "Rank updated successfully.",
"workspaceId": "45734"
}{
"success": false,
"requestId": "req_...",
"message": "Provided API key is invalid."
}Audit behavior
Every rank request is written to API logs. Successful rank changes are also written to ranking logs so workspace staff can see API-driven rank changes alongside dashboard and bot actions.