Get Comments On Object

List all comments on an item, task, or status

Parameters

ParameterTypeRequiredDescription
typestringRequiredObject type: item, task, status
idnumberRequiredObject ID
limitnumberOptionalMax comments (default: 100)
offsetnumberOptionalPagination offset

Examples

MCP Tool Call

{
  "name": "podio_getCommentsOnObject",
  "arguments": {
    "type": "example",
    "id": 12345,
    "limit": 12345,
    "offset": 12345
  }
}

REST API

curl -X POST https://api.syncello.io/v1/tools/podio/getCommentsOnObject \
  -H "Authorization: Bearer YOUR_JWT_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
  "type": "example",
  "id": 12345,
  "limit": 12345,
  "offset": 12345
}'