Get Started
API backend
API system
More information

GET api/2.0/portal/tariff This function requires authentication

Description

Returns the current portal tariff.

Parameters

This method doesn't have any parameters.

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

Current portal tariff

Example Response

application/json

{
  "status": 0,
  "response": {
    "Id": 1234,
    "DueDate": "2008-04-10T06-30-00.000Z",
    "DelayDueDate": "2008-04-10T06-30-00.000Z",
    "LicenseDate": "2008-04-10T06-30-00.000Z",
    "CustomerId": "some text"
  }
}

text/xml

<result>
  <status>0</status>
  <response>
    <Id>1234</Id>
    <DueDate>2008-04-10T06-30-00.000Z</DueDate>
    <DelayDueDate>2008-04-10T06-30-00.000Z</DelayDueDate>
    <LicenseDate>2008-04-10T06-30-00.000Z</LicenseDate>
    <CustomerId>some text</CustomerId>
  </response>
</result>