action posthog_task_channels_feed_list { label: "List channel feed messages" description: "A channel's system announcements in chronological order." provider: posthog method: GET path: "/api/projects/{project_id}/task_channels/{channel_id}/feed/" encoding: json input: { type: "object" properties: { channel_id: { type: "string" } limit: { type: "integer" } offset: { type: "integer" } } required: ["channel_id"] additionalProperties: false } output: { type: "object" required: ["count", "results"] properties: { count: { type: "integer" } next: { type: ["string", "null"] format: "uri" } previous: { type: ["string", "null"] format: "uri" } results: { type: "array" items: { type: "object" description: "Response shape for one system announcement in a channel's feed." required: ["author_kind", "channel", "content", "created_at", "event", "id", "payload"] properties: { author: { type: "object" } author_kind: { type: "string" } channel: { type: "string" format: "uuid" } content: { type: "string" } created_at: { type: "string" format: "date-time" } event: { type: "string" } id: { type: "string" format: "uuid" } payload: { type: "object" } } } } } } }