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

Description

Returns the backup schedule for the current portal.

Parameters

This method doesn't have any parameters.

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

Backup schedule

Example Response

application/json

{
  "status": 0,
  "response": {
    "StorageType": 1,
    "StorageParams": null,
    "BackupMail": true,
    "BackupsStored": 1,
    "LastBackupTime": "2019-07-26T00:00:00"
  }
}

text/xml

<result>
  <status>0</status>
  <response>
    <StorageType>1</StorageType>
    <StorageParams />
    <BackupMail>True</BackupMail>
    <BackupsStored>1</BackupsStored>
    <LastBackupTime>2019-07-26T00:00:00</LastBackupTime>
  </response>
</result>