Raise max sub-accounts for a key
Authorize additional Extra Accounts on an existing key by raising its
max_accounts cap. Strictly raise-only: the request is rejected
if the new value is less than or equal to the current max_accounts.
Authentication
Use either:
- the dashboard JWT (
Authorization: Bearer <jwt>), or - any of your
sk_API keys (X-API-Key: sk_…)
Auth is admin-scoped, not key-scoped: an sk_ identifies the
admin who owns it, so any of your sk_ keys can manage any of your
other keys. For example, using the sk_ of “user A” to raise the
cap on the key of “user B” works as long as both keys belong to
the same admin. An sk_ from a different admin returns
400 Key not found (the response purposely doesn’t distinguish
“exists but not yours” from “doesn’t exist”).
Billing impact
Extras are billed based on actual sub-accounts attached, so raising the cap by itself does not generate a charge — you only pay once a sub-account beyond the included threshold is actually created.
Example
curl -X POST https://api.easierprop.com/admin/keys/{id}/max-accounts \
-H 'X-API-Key: sk_…' \
-H 'Content-Type: application/json' \
-d '{"max_accounts": 6}'
Authorizations
JWT token obtained from POST /admin/login
Path Parameters
API key ID
Body
New cap value. Must be strictly greater than the key's current
max_accounts. The endpoint is raise-only by design — it never
accepts equal or lower values.
1 <= x <= 10005