action posthog_tasks_pinned_retrieve { label: "List pinned tasks" description: "Return the visible tasks pinned by the requester in the current project." provider: posthog method: GET path: "/api/projects/{project_id}/tasks/pinned/" encoding: json output: { type: "object" required: ["task_ids"] properties: { task_ids: { type: "array" description: "Visible task IDs pinned by the requester, newest pin first." items: { type: "string" format: "uuid" } } } } }