action posthog_task_mentions_list { label: "List mentions of the requester" description: "Thread messages that @-mention the requester, newest first, restricted to tasks they can see." provider: posthog method: GET path: "/api/projects/{project_id}/task_mentions/" encoding: json input: { type: "object" properties: { limit: { type: "integer" } offset: { type: "integer" } since: { type: "string" format: "date-time" } } 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 @-mention of the requester in a task's thread." required: ["channel_id", "channel_name", "content", "created_at", "id", "message_id", "task_id", "task_title"] properties: { author: { type: "object" } channel_id: { type: ["string", "null"] format: "uuid" } channel_name: { type: ["string", "null"] } content: { type: "string" } created_at: { type: "string" format: "date-time" } id: { type: "string" format: "uuid" } message_id: { type: "string" format: "uuid" } task_id: { type: "string" format: "uuid" } task_title: { type: "string" } } } } } } }