Send Share Notification
Send or resend share notification emails to recipients
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
share_id | string | Required | ID of the share |
recipients | array | Required | Email addresses of recipients to notify |
personal_message | string | Optional | Personal message to include in the email |
cc_sender | boolean | Optional | CC 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
}'