Get Item Access Controls
Get access control list (permissions) for a file or folder
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
item_id | string | Required | ID of the item to get permissions for |
Examples
MCP Tool Call
{
"name": "sharefile_getItemAccessControls",
"arguments": {
"item_id": "example"
}
}REST API
curl -X POST https://api.syncello.io/v1/tools/sharefile/getItemAccessControls \
-H "Authorization: Bearer YOUR_JWT_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"item_id": "example"
}'