Get Started
API backend
API system
More information

GET api/2.0/people/reassign/progress This function requires authentication

Description

Returns the progress of the started data reassignment for the user with the ID specified in the request.

Parameters
Name Description Type Example
userId
sent in body
User ID whose data is reassigned guid 9924256A-739C-462b-AF15-E652A3B1B6EB
Example
GET api/2.0/people/reassign/progress
Host: yourportal.onlyoffice.com
Content-Type: application/json
Accept: application/json

{
  "userId": "9924256A-739C-462b-AF15-E652A3B1B6EB"
}
Returns

Reassignment progress

Example Response

application/json

{
  "status": 0,
  "response": {
    "FromUser": "9924256A-739C-462b-AF15-E652A3B1B6EB",
    "ToUser": "9924256A-739C-462b-AF15-E652A3B1B6EB"
  }
}

text/xml

<result>
  <status>0</status>
  <response>
    <FromUser>9924256A-739C-462b-AF15-E652A3B1B6EB</FromUser>
    <ToUser>9924256A-739C-462b-AF15-E652A3B1B6EB</ToUser>
  </response>
</result>