FRP LogoFuture Reportbot

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

FieldTypeRequiredDescription
steam_idstringYesThe Steam ID of the user to whitelist.

Example Request:

POST https://api.fbot.cc/v1/queue/whitelist
Content-Type: application/json
Authorization: Bearer <your-frp-key>
{ 
    steam_id: '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": {
        "target": {
            "id": "76561198000000000",
            "name": "Sample User",
            "avatar": "https://steamcdn-a.akamaihd.net/avatars/sample.jpg"
        }
    }
}

Response Fields

FieldTypeDescription
successbooleanIndicates whether the request was successful (true or false).
messagestringA message indicating the result of the request.
data.target.idstringThe Steam ID of the user that was whitelisted.
data.target.namestringThe name of the user that was whitelisted.
data.target.avatarstringThe avatar URL of the user that was whitelisted.

On this page