Attach File
Attach an uploaded file to an object
Parameters
| Parameter | Type | Required | Description | Options |
|---|---|---|---|---|
file_id | number | Required | File ID | |
ref_type | string | Required | Object type | itemcommentstatusspacetask |
ref_id | number | Required | Object ID | |
silent | boolean | Optional | Suppress notifications |
Examples
MCP Tool Call
{
"name": "podio_attachFile",
"arguments": {
"file_id": 12345,
"ref_type": "example",
"ref_id": 12345,
"silent": true
}
}REST API
curl -X POST https://api.syncello.io/v1/tools/podio/attachFile \
-H "Authorization: Bearer YOUR_JWT_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"file_id": 12345,
"ref_type": "example",
"ref_id": 12345,
"silent": true
}'