cURL
curl --request GET \ --url https://api.mudstack.com/accounts/limits \ --header 'Authorization: Bearer <token>' \ --header 'x-account-id: <x-account-id>'
{ "isTemporary": true, "expiresInDays": 123, "storage": { "current": 123, "max": 123 }, "assets": { "current": 123, "max": 123 }, "users": { "current": 123, "max": 123 } }
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Limits retrieved successfully
Limits associated with an account.
Indicates if the account is temporary.
Number of days until the account expires.
Show child attributes
Current storage usage.
Maximum storage allowed.
Current number of assets.
Maximum number of assets allowed.
Current number of users.
Maximum number of users allowed.
Was this page helpful?