POST
https://api.dev.bifrostgaming.com/v1/graphqlguildRevokeAdminCam
v1Revoke a player's admin cam access by removing them from every admin group on the server. The underlying RCON RemoveAdmin command is not group-scoped — it strips the player from every group, not just Spectator. Currently supported on HLL only.
Operation Type
Mutation
Rate Limit: 150 requests per 5 minutes per server
Bulk operations are supported within the rate limit window.
Important usage notes
- Removes the player from **every** admin group on the server, not just Spectator. If your workflow has the player in multiple groups, this clears all of them.
- `success: true` even when the player is not currently on the admin list — the underlying RCON command is idempotent in that direction.
- Returns `error: "UNSUPPORTED_GAMETYPE"` if the server's game type does not have the RemoveAdmin RCON command registered (HLL is the only supported game type at this time).
- The action is logged to the guild's moderator action history as `REVOKE_ADMIN_CAM`.
Input Fields
| Field | Type | Required | Description |
|---|---|---|---|
serverId | ID! | Required | The server ID. |
playerId | String! | Required | Player's platform ID (Steam ID, EOS ID, or T17 ID). |
Code Examples
curl -X POST https://api.dev.bifrostgaming.com/v1/graphql \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_ACCESS_TOKEN" \
-d '{
"query": "mutation GuildRevokeAdminCam($input: GuildRevokeAdminCamInput!) { guildRevokeAdminCam(input: $input) { success message error timestamp } }",
"variables": {
"input": {
"serverId": "YOUR_SERVER_ID",
"playerId": "76561198000000000"
}
}
}'Postman Collection
Download a ready-to-use Postman collection for this endpoint. Import it into Postman to start testing immediately.
How to import into Postman
- Open Postman and click Import (top-left)
- Drag and drop the downloaded
.jsonfile, or click Upload Files and select it - Click Import to confirm
- The collection appears in your sidebar — expand it and select the request
- In the Body tab, update the placeholder values (
your-partner-id, etc.) with your actual credentials - Click Send
The collection uses Postman's GraphQL body type, which provides syntax highlighting and variable editing. Make sure your Postman version is 7.2+ for GraphQL support.
Success Response200
{
"data": {
"guildRevokeAdminCam": {
"success": true,
"message": "Player 76561198000000000 admin cam revoked",
"error": null,
"timestamp": "2026-05-18T19:42:06.539Z"
}
}
}Error Responses
A Shrapnelworks product