POST
https://api.dev.bifrostgaming.com/v1/graphqlguildGetSupporterConfig
v1Returns the guild's supporter configuration, including available channels and levels/tiers. Use the channel and level IDs when calling addSupporter.
Operation Type
Query
Rate Limit: 1 request per 5 minutes per guild
Supporter configuration does not change frequently.
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": "{ guildGetSupporterConfig { success channels { id name levels { id name } } timestamp } }"}'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": {
"guildGetSupporterConfig": {
"enabled": true,
"servers": [
{
"serverId": "server-abc-123",
"serverName": "My Community Server #1",
"vipSlots": 10,
"usedSlots": 3
}
]
}
}
}Error Responses
Response Fields
| Field | Type | Required | Description |
|---|---|---|---|
success | Boolean | Optional | Whether the request succeeded |
channels | Array | Optional | Array of supporter channels with id, name, and levels |
channels[].levels | Array | Optional | Array of level/tier objects with id and name |
timestamp | String | Optional | Server timestamp |