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

Description

Returns the available portal quotas.

Parameters

This method doesn't have any parameters.

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

List of available portal quotas

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>