Retrieves AI quota information for the current logged-in user, including total quota, used quota, remaining quota, and borrow status.
curl --request GET \
--url https://api.lofty.com/v2.0/sales-agents/quota \
--header 'Authorization: <authorization>'{
"totalQuota": 100,
"usedQuota": 45,
"remainingQuota": 55,
"hasQuotaAvailable": true,
"usagePercentage": 45,
"isBorrowed": false,
"borrowLevel": "SELF",
"borrowedFrom": 12346
}Documentation Index
Fetch the complete documentation index at: https://developer.lofty.com/llms.txt
Use this file to discover all available pages before exploring further.
Bearer [access_token]
Quota information retrieved successfully
Sales Agent quota information
Total quota limit
100
Used quota count (working leads)
45
Remaining quota count
55
Whether quota is available
true
Quota usage percentage (0-100)
45
Whether AI is borrowed from others
false
Borrow level if borrowed: SELF, GROUP, TEAM
"SELF"
Borrowed from user/office ID
12346
curl --request GET \
--url https://api.lofty.com/v2.0/sales-agents/quota \
--header 'Authorization: <authorization>'{
"totalQuota": 100,
"usedQuota": 45,
"remainingQuota": 55,
"hasQuotaAvailable": true,
"usagePercentage": 45,
"isBorrowed": false,
"borrowLevel": "SELF",
"borrowedFrom": 12346
}