Skip to main content
GET
/
v2.0
/
sales-agents
/
quota
Get current user's Sales Agent quota
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.

Headers

Authorization
string
required

Bearer [access_token]

Response

Quota information retrieved successfully

Sales Agent quota information

totalQuota
integer<int64>

Total quota limit

Example:

100

usedQuota
integer<int32>

Used quota count (working leads)

Example:

45

remainingQuota
integer<int64>

Remaining quota count

Example:

55

hasQuotaAvailable
boolean

Whether quota is available

Example:

true

usagePercentage
number<double>

Quota usage percentage (0-100)

Example:

45

isBorrowed
boolean

Whether AI is borrowed from others

Example:

false

borrowLevel
string

Borrow level if borrowed: SELF, GROUP, TEAM

Example:

"SELF"

borrowedFrom
integer<int64>

Borrowed from user/office ID

Example:

12346