Send Share Notification

Send or resend share notification emails to recipients

Parameters

ParameterTypeRequiredDescription
share_idstringRequiredID of the share
recipientsarrayRequiredEmail addresses of recipients to notify
personal_messagestringOptionalPersonal message to include in the email
cc_senderbooleanOptionalCC the sender on the notification

Examples

MCP Tool Call

{
  "name": "sharefile_sendShareNotification",
  "arguments": {
    "share_id": "example",
    "recipients": "example",
    "personal_message": "example",
    "cc_sender": true
  }
}

REST API

curl -X POST https://api.syncello.io/v1/tools/sharefile/sendShareNotification \
  -H "Authorization: Bearer YOUR_JWT_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
  "share_id": "example",
  "recipients": "example",
  "personal_message": "example",
  "cc_sender": true
}'