Get Reseller Score Limits API
Retrieve the score limit definitions that determine reseller level progression thresholds
Get Reseller Score Limits API
Access the score limit definitions for reseller level progression. View the thresholds and symbols that determine how resellers advance through tier levels.
Score Thresholds
Level progression limits.
Symbol Definitions
Score category identifiers.
Maximum Limits
Upper bounds per metric.
Endpoint Overview
/graphqlRetrieve the score limit definitions including definitions, symbols, and maximum limits for each scoring category.
GraphQL Query
query getResellerScoreLimits {
getResellerScoreLimits {
scoreDefinition
symbol
maximumLimit
}
}HTTP Request:
curl -X POST https://api.orbnet.com/graphql \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_TOKEN" \
-d '{
"query": "query getResellerScoreLimits { getResellerScoreLimits { scoreDefinition symbol maximumLimit } }"
}'Response
{
"data": {
"getResellerScoreLimits": [
{
"scoreDefinition": "Monthly Credit Purchases",
"symbol": "MCP",
"maximumLimit": 500
},
{
"scoreDefinition": "Current Credit Balance",
"symbol": "CCB",
"maximumLimit": 300
},
{
"scoreDefinition": "Active Subscriptions",
"symbol": "AS",
"maximumLimit": 1000
},
{
"scoreDefinition": "Membership Duration",
"symbol": "MD",
"maximumLimit": 200
},
{
"scoreDefinition": "Total Sales Volume",
"symbol": "TSV",
"maximumLimit": 2000
},
{
"scoreDefinition": "Monthly Sales",
"symbol": "MS",
"maximumLimit": 800
}
]
}
}{
"errors": [
{
"message": "Admin authentication required",
"path": ["getResellerScoreLimits"],
"extensions": {
"code": "UNAUTHORIZED"
}
}
],
"data": null
}Response Fields
scoreDefinitionString!Human-readable description of the scoring metric.
symbolString!Short symbol/code for the scoring category.
maximumLimitInt!Maximum score points achievable for this category.
Score Categories
Credit Activity
Monthly purchases and balance.
Sales Performance
Monthly and total sales.
Subscription Count
Active user subscriptions.
Tenure
Membership duration score.
Related Endpoints
Score System
Score limits define the maximum points a reseller can earn in each category. The total score across all categories determines the reseller's tier level.
View Tier Structure
See how scores translate to reseller tier levels and discounts.