Attach File

Attach an uploaded file to an object

Parameters

ParameterTypeRequiredDescriptionOptions
file_idnumberRequiredFile ID
ref_typestringRequiredObject type
itemcommentstatusspacetask
ref_idnumberRequiredObject ID
silentbooleanOptionalSuppress 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
}'