action twinehealth_fetch_patients { label: "List patients" description: "Get a list of patients." provider: twinehealth method: GET path: "/patient" encoding: json input: { type: "object" properties: { "filter[archived]": { type: "boolean" } "filter[created_at]": { type: "string" } "filter[groups]": { type: "string" } "filter[identifier][system]": { type: "string" } "filter[identifier][value]": { type: "string" } "filter[organization]": { type: "string" } "filter[updated_at]": { type: "string" } "page[cursor]": { type: "string" } "page[limit]": { type: "integer" } "page[number]": { type: "integer" } "page[size]": { type: "integer" } } additionalProperties: false } output: { type: "object" additionalProperties: true } }