Get Files On Space

List files in a workspace

Parameters

ParameterTypeRequiredDescriptionOptions
space_idnumberRequiredSpace ID
attached_tostringOptionalFilter by object type
itemstatustaskspace
filetypestringOptionalFilter by file type
imageapplicationvideotextaudio
limitnumberOptionalMax results (default: 20)
offsetnumberOptionalPagination offset
sort_bystringOptionalSort field
namecreated_on
sort_descbooleanOptionalDescending 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
}'