GET api/2.0/settings/quota
Returns the space usage quota for the portal.
This method doesn't have any parameters.
GET api/2.0/settings/quota
Host: yourportal.onlyoffice.com
Content-Type: application/json
Accept: application/json
Space usage and limits for upload
application/json
{
"status": 0,
"response": {
"MaxRoomAdminsCount": 1234,
"RoomAdminCount": 1234,
"AvailableUsersCount": 1234,
"UserStorageSize": 1234,
"UserUsedSize": 1234,
"UserAvailableSize": 1234,
"MaxUsers": 1234,
"UsersCount": 1234
}
}
text/xml
<result>
<status>0</status>
<response>
<MaxRoomAdminsCount>1234</MaxRoomAdminsCount>
<RoomAdminCount>1234</RoomAdminCount>
<AvailableUsersCount>1234</AvailableUsersCount>
<UserStorageSize>1234</UserStorageSize>
<UserUsedSize>1234</UserUsedSize>
<UserAvailableSize>1234</UserAvailableSize>
<MaxUsers>1234</MaxUsers>
<UsersCount>1234</UsersCount>
</response>
</result>