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

Description

Returns the progress of the started backup.

Parameters

This method doesn't have any parameters.

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

Backup progress

Example Response

application/json

{
  "status": 0,
  "response": {
    "IsCompleted": false,
    "Progress": 44,
    "Error": null,
    "Link": "Link"
  }
}

text/xml

<result>
  <status>0</status>
  <response>
    <IsCompleted>False</IsCompleted>
    <Progress>44</Progress>
    <Error />
    <Link>Link</Link>
  </response>
</result>