Upload File

Upload a file to Podio

Parameters

ParameterTypeRequiredDescription
filenamestringRequiredFilename with extension
contentstringOptionalBase64-encoded content
urlstringOptionalURL to download from

Examples

MCP Tool Call

{
  "name": "podio_uploadFile",
  "arguments": {
    "filename": "example",
    "content": "example",
    "url": "example"
  }
}

REST API

curl -X POST https://api.syncello.io/v1/tools/podio/uploadFile \
  -H "Authorization: Bearer YOUR_JWT_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
  "filename": "example",
  "content": "example",
  "url": "example"
}'