Upload File
Upload a file to Podio
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
filename | string | Required | Filename with extension |
content | string | Optional | Base64-encoded content |
url | string | Optional | URL 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"
}'