Skip to main content
POST
/
ranking
/
promote
/
{userid}
curl --request POST \
  --url https://apexal.overli.xyz/api/v1/ranking/promote/userid \
  --header 'Authorization: APIKEY' \
  --header 'Content-Type: application/json'
{
  "success": true,
  "details": {
    "Username": "Builderman",
    "UserId": 1,
    "PreviousRank": "Intern",
    "NewRank": "Employee",
    "Workspace": "Apexal Cafe"
  }
}
As we are newly launched, endpoints may expect slower response times. We are working on making them better!

Authentication

All API endpoints are authenticated using workspace private authorization keys.
Authorization
string
required
Example: Authorization: apexal_c8fJ71***********

Promote a User

Use this endpoint to trigger a rank promotion for a specific user ID.

Path Parameters

userid
string
required
The unique ID of the roblox user you want to promote.
curl --request POST \
  --url https://apexal.overli.xyz/api/v1/ranking/promote/userid \
  --header 'Authorization: APIKEY' \
  --header 'Content-Type: application/json'
{
  "success": true,
  "details": {
    "Username": "Builderman",
    "UserId": 1,
    "PreviousRank": "Intern",
    "NewRank": "Employee",
    "Workspace": "Apexal Cafe"
  }
}