action twinehealth_fetch_patient_coaches { label: "List coaches for a patient" description: "Get the list of coaches for a patient." provider: twinehealth method: GET path: "/patient/{id}/coaches" encoding: json input: { type: "object" properties: { id: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }