GET
/
accounts
/
limits
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
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

x-account-id
string
required

Response

200 - application/json
Limits retrieved successfully

Limits associated with an account.