Get Started
API backend
API system
More information

GET api/2.0/portal/payment/quota This function requires authentication

Description

Returns the payment information about the current portal quota.

Parameters

This method doesn't have any parameters.

Example
GET api/2.0/portal/payment/quota
Host: yourportal.onlyoffice.com
Content-Type: application/json
Accept: application/json
Returns

Payment information about the current portal quota

Example Response

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>