GET api/2.0/portal/payment/quota
Returns the payment information about the current portal quota.
This method doesn't have any parameters.
GET api/2.0/portal/payment/quota
Host: yourportal.onlyoffice.com
Content-Type: application/json
Accept: application/json
Payment information about the current portal quota
application/json
{
"status": 0,
"response": {
"Id": 1234,
"Title": "some text",
"Price": {
"CurrencySymbol": "some text"
},
"NonProfit": true,
"Free": true,
"Trial": true
}
}
text/xml
<result>
<status>0</status>
<response>
<Id>1234</Id>
<Title>some text</Title>
<Price>
<CurrencySymbol>some text</CurrencySymbol>
</Price>
<NonProfit>True</NonProfit>
<Free>True</Free>
<Trial>True</Trial>
</response>
</result>