Delete Share
Delete a share (revoke access)
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
share_id | string | Required | ID of the share to delete |
Examples
MCP Tool Call
{
"name": "sharefile_deleteShare",
"arguments": {
"share_id": "example"
}
}REST API
curl -X POST https://api.syncello.io/v1/tools/sharefile/deleteShare \
-H "Authorization: Bearer YOUR_JWT_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"share_id": "example"
}'