Delete Share

Delete a share (revoke access)

Parameters

ParameterTypeRequiredDescription
share_idstringRequiredID 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"
}'