Starts the data deletion for the user with the ID specified in the request.
Name | Description | Type | Example |
UserId
sent in body
|
User ID whose data is reassigned/removed | System.Guid |
POST api/2.0/people/remove/start Host: yourportal.onlyoffice.com Content-Type: application/json Accept: application/json { "UserId": "9924256A-739C-462b-AF15-E652A3B1B6EB" }
Deletion progress
application/json
{ "status": 0, "response": { "FromUser": "9924256A-739C-462b-AF15-E652A3B1B6EB", "User": { "Id": "9924256A-739C-462b-AF15-E652A3B1B6EB", "FirstName": "some text", "LastName": "some text", "UserName": "some text", "Status": "Active", "ActivationStatus": "NotActivated", "Title": "some text", "Email": "some text", "Contacts": "some text", "ContactsList": [ "some text" ], "Location": "some text", "Notes": "some text", "Removed": true, "LastModified": "2008-04-10T06-30-00.000Z", "Tenant": 1234, "IsActive": true, "CultureName": "some text", "MobilePhone": "some text", "Sid": "some text", "LdapQouta": 1234, "SsoNameId": "some text", "SsoSessionId": "some text", "CreateDate": "2008-04-10T06-30-00.000Z" } } }
text/xml
<result> <status>0</status> <response> <FromUser>9924256A-739C-462b-AF15-E652A3B1B6EB</FromUser> <User> <Id>9924256A-739C-462b-AF15-E652A3B1B6EB</Id> <FirstName>some text</FirstName> <LastName>some text</LastName> <UserName>some text</UserName> <Status>Active</Status> <ActivationStatus>NotActivated</ActivationStatus> <Title>some text</Title> <Email>some text</Email> <Contacts>some text</Contacts> <ContactsList>[ "some text" ]</ContactsList> <Location>some text</Location> <Notes>some text</Notes> <Removed>True</Removed> <LastModified>2008-04-10T06-30-00.000Z</LastModified> <Tenant>1234</Tenant> <IsActive>True</IsActive> <CultureName>some text</CultureName> <MobilePhone>some text</MobilePhone> <Sid>some text</Sid> <LdapQouta>1234</LdapQouta> <SsoNameId>some text</SsoNameId> <SsoSessionId>some text</SsoSessionId> <CreateDate>2008-04-10T06-30-00.000Z</CreateDate> </User> </response> </result>