logoFRP

Whitelist User

Developer Alert

This endpoint is still private! Will be enabled in the future

🛠 Endpoint

POST https://api.fbot.cc/v1/queue/whitelist

The following parameters should be included in the request body

PropTypeDefault
profile
string
Required

Example Request:

POST https://api.fbot.cc/v1/queue/whitelist
Content-Type: application/json
Authorization: Bearer <your-frp-key>
{ 
    profile: '76561198000000000' /* Required */
}

🚀 Response

Upon successfully whitelisting a user, the API will return a 200 OK response with the following structure:

{
    "success": true,
    "message": "Successfully added 76561198000000000 to whitelist with id 6a9xxxxxxxxxxxxxxxxxxxxxxxx",
    "data": {
        "user": {
            "id": "76561198000000000",
            "name": "Sample User",
            "avatar": "https://steamcdn-a.akamaihd.net/avatars/sample.jpg"
        }
    }
}

On this page