action posthog_tasks_thread_messages_list { label: "List thread messages" description: "The task's thread in chronological order." provider: posthog method: GET path: "/api/projects/{project_id}/tasks/{task_id}/thread_messages/" encoding: json input: { type: "object" properties: { limit: { type: "integer" } offset: { type: "integer" } task_id: { type: "string" } } required: ["task_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 message in a task's thread." required: ["author_kind", "content", "created_at", "event", "id", "payload", "task"] properties: { author: { type: "object" } author_kind: { type: "string" } content: { type: "string" } created_at: { type: "string" format: "date-time" } event: { type: "string" } forwarded_by: { type: "object" } forwarded_to_agent_at: { type: ["string", "null"] format: "date-time" } id: { type: "string" format: "uuid" } payload: { type: "object" } task: { type: "string" format: "uuid" } } } } } } }