Get Files On Space
List files in a workspace
Parameters
| Parameter | Type | Required | Description | Options |
|---|---|---|---|---|
space_id | number | Required | Space ID | |
attached_to | string | Optional | Filter by object type | itemstatustaskspace |
filetype | string | Optional | Filter by file type | imageapplicationvideotextaudio |
limit | number | Optional | Max results (default: 20) | |
offset | number | Optional | Pagination offset | |
sort_by | string | Optional | Sort field | namecreated_on |
sort_desc | boolean | Optional | Descending order |
Examples
MCP Tool Call
{
"name": "podio_getFilesOnSpace",
"arguments": {
"space_id": 12345,
"attached_to": "example",
"filetype": "example",
"limit": 12345,
"offset": 12345,
"sort_by": "example",
"sort_desc": true
}
}REST API
curl -X POST https://api.syncello.io/v1/tools/podio/getFilesOnSpace \
-H "Authorization: Bearer YOUR_JWT_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"space_id": 12345,
"attached_to": "example",
"filetype": "example",
"limit": 12345,
"offset": 12345,
"sort_by": "example",
"sort_desc": true
}'