POST
https://api.dev.bifrostgaming.com/v1/graphqlguildGetAllMaps
v1Get a list of all available maps for a game server.
Operation Type
Query
Rate Limit: 1 request per 4 hours per guild
Map list rarely changes; cache locally after first request.
Input Fields
| Field | Type | Required | Description |
|---|---|---|---|
serverId | ID! | Required | The unique identifier of the game server. |
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": "query ($serverId: ID!, $gameType: String) { guildGetAllMaps(serverId: $serverId, gameType: $gameType) { maps { mapName mapId gameMode } } }",
"variables": { "serverId": "YOUR_SERVER_ID", "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": {
"guildGetAllMaps": {
"maps": [
{ "mapName": "Carentan", "mapId": "carentan_warfare", "gameMode": "Warfare" },
{ "mapName": "Carentan", "mapId": "carentan_offensive_us", "gameMode": "Offensive" },
{ "mapName": "Foy", "mapId": "foy_warfare", "gameMode": "Warfare" },
{ "mapName": "Hurtgen Forest", "mapId": "hurtgenforest_warfare", "gameMode": "Warfare" },
{ "mapName": "Kursk", "mapId": "kursk_warfare", "gameMode": "Warfare" }
]
}
}
}Error Responses
Response Fields
| Field | Type | Required | Description |
|---|---|---|---|
maps | Array | Optional | Array of map objects with: mapName, mapId, gameMode |