POST
https://api.dev.bifrostgaming.com/v1/graphqlguildChangeMap
v1Change the current map on a game server. The map change takes effect immediately.
Operation Type
Mutation
Rate Limit: 1 request per 2 minutes per server
Map changes take time to process on the game server.
Input Fields
| Field | Type | Required | Description |
|---|---|---|---|
serverId | ID! | Required | The unique identifier of the game server. |
mapName | String! | Required | Map name from guildGetAllMaps. |
gameType | String | Optional | The game type identifier. |
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 ($serverId: ID!, $mapName: String!, $gameType: String) { guildChangeMap(serverId: $serverId, mapName: $mapName, gameType: $gameType) { success message } }",
"variables": { "serverId": "YOUR_SERVER_ID", "mapName": "carentan_warfare", "gameType": "HLL" }
}'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": {
"guildChangeMap": {
"success": true,
"message": "Map change initiated to carentan_warfare"
}
}
}