Delete File
Delete a file by ID
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
file_id | number | Required | File ID |
hook | boolean | Optional | Execute hooks (default: true) |
Examples
MCP Tool Call
{
"name": "podio_deleteFile",
"arguments": {
"file_id": 12345,
"hook": true
}
}REST API
curl -X POST https://api.syncello.io/v1/tools/podio/deleteFile \
-H "Authorization: Bearer YOUR_JWT_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"file_id": 12345,
"hook": true
}'