Resellers Levels API
Retrieve all reseller tier levels with discount percentages and qualification thresholds
Resellers Levels API
Retrieve the complete hierarchy of reseller levels. Access tier names, discount percentages, and minimum score requirements for each level.
Tier System
Complete level hierarchy.
Discounts
Tier-based discount rates.
Thresholds
Score requirements per level.
Endpoint Overview
/graphqlRetrieve the complete list of reseller levels including tier names, discount percentages, and minimum score requirements for qualification.
GraphQL Query
query getResellersLevels {
getResellersLevels {
id
name
discountPercent
minScore
}
}HTTP Request:
curl -X POST https://api.orbnet.com/graphql \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_TOKEN" \
-d '{
"query": "query getResellersLevels { getResellersLevels { id name discountPercent minScore } }"
}'Response
{
"data": {
"getResellersLevels": [
{
"id": "1",
"name": "Bronze",
"discountPercent": 5,
"minScore": 0
},
{
"id": "2",
"name": "Silver",
"discountPercent": 10,
"minScore": 100
},
{
"id": "3",
"name": "Gold",
"discountPercent": 15,
"minScore": 500
},
{
"id": "4",
"name": "Platinum",
"discountPercent": 20,
"minScore": 1000
},
{
"id": "5",
"name": "Diamond",
"discountPercent": 25,
"minScore": 2500
}
]
}
}{
"errors": [
{
"message": "Admin authentication required",
"path": ["getResellersLevels"],
"extensions": {
"code": "UNAUTHORIZED"
}
}
],
"data": null
}Response Fields
idID!Unique identifier for the reseller level.
nameString!Display name of the level tier (e.g., Bronze, Silver, Gold).
discountPercentInt!Discount percentage applied to resellers at this level.
minScoreInt!Minimum credit score required to qualify for this level.
Level Tiers
Bronze
Entry level for new resellers.
Silver
Growing partners with consistent sales.
Gold
Established resellers with strong performance.
Platinum & Diamond
Top-tier partners with maximum benefits.
Related Endpoints
Level Progression
Reseller levels are determined by cumulative credit scores. Higher levels unlock greater discounts and additional benefits.
View Current Credits
Check the credit balances for all resellers in your network.