Documentation Index
Fetch the complete documentation index at: https://docs.drime.cloud/llms.txt
Use this file to discover all available pages before exploring further.
Overview
Removes a user’s access to a shared file or folder.
Path Parameters
ID of the shared file or folder
Request Body
ID of the user to remove access from
Response
Updated list of users who still have access
curl -X DELETE https://app.drime.cloud/api/v1/file-entries/123456/unshare \
-H "Authorization: Bearer YOUR_ACCESS_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"userId": 12345
}'
{
"status": "success",
"users": []
}