added
Ownership Management
November 30th, 2021 by Yurii Losinets
Please be informed that we've added a few methods for ownership management via API.
Members via API
Now you can easily retrieve information about all members in the workspace using:
Create on member's behalf
Also, we've added the possibility to set document owner in the document creation request.
"owner":{
"membership_id":"radQBiBkU7MBk59NSgaGfd"
}
or
"owner":{
"email":"[email protected]"
}
Update Document Ownership
Moreover, we've added a new method to Update Document Owner.
{
"membership_id":"radQBiBkU7MBk59NSgaGfd"
}
Transfer All Documents Ownership
The last but not least, we've added the possibility to Transfer Documents Ownership to another member in a single API call.
{
"from_membership_id": "Dqsxp4jNnFcS63tJEgLJGN",
"to_membership_id": "radQBiBkU7MBk59NSgaGfd"
}
More details you may find in the Transfer document ownership to another user topic.