Get Comments On Object
List all comments on an item, task, or status
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
type | string | Required | Object type: item, task, status |
id | number | Required | Object ID |
limit | number | Optional | Max comments (default: 100) |
offset | number | Optional | Pagination 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
}'