Bifrost Bifrost
POSThttps://api.dev.bifrostgaming.com/v1/graphql

guildSetMaxNetworkPing

v1

Update the high-ping threshold (in milliseconds) that triggers an automatic kick for sustained high-ping players. 0 disables the kick. Mirrors the UCP Maximum Player Ping setting.

Operation Type

Mutation

Rate Limit: No explicit rate limit; reasonable use enforced by OAuth client throttling.

Important usage notes

  • Out-of-range values return error: "INVALID_INPUT". Valid range: 0-999.
  • Maps internally to the RCON SetHighPingThreshold command.

Input Fields

FieldTypeRequiredDescription
serverIdID!RequiredUnique server identifier.
maxPingInt!RequiredHigh-ping threshold in milliseconds. 0 disables. Range: 0-999.

Code Examples

curl -X POST https://api.dev.bifrostgaming.com/v1/graphql \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "query": "mutation ($input: GuildSetMaxNetworkPingInput!) { guildSetMaxNetworkPing(input: $input) { success message error timestamp } }",
    "variables": { "input": { "serverId": "YOUR_SERVER_ID", "maxPing": 200 } }
  }'

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
  1. Open Postman and click Import (top-left)
  2. Drag and drop the downloaded .json file, or click Upload Files and select it
  3. Click Import to confirm
  4. The collection appears in your sidebar — expand it and select the request
  5. In the Body tab, update the placeholder values (your-partner-id, etc.) with your actual credentials
  6. 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": {
    "guildSetMaxNetworkPing": {
      "success": true,
      "message": "Max network ping updated to 200ms.",
      "error": null,
      "timestamp": "2026-05-20T15:00:00.000Z"
    }
  }
}

Error Responses

Response Fields

FieldTypeRequiredDescription
successBooleanRequiredWhether the update succeeded.
messageStringRequiredHuman-readable result.
errorStringOptionalError code on failure.
timestampStringRequiredISO-8601 timestamp.
Shrapnelworks Logo

A Shrapnelworks product