action twinehealth_fetch_reward_earnings { label: "List reward earnings" description: "Get a list of reward earnings matching the specified filters." provider: twinehealth method: GET path: "/reward_earning" encoding: json input: { type: "object" properties: { "filter[groups]": { type: "string" } "filter[patient]": { type: "string" } "filter[ready_for_fulfillment]": { type: "boolean" } } required: ["filter[groups]", "filter[patient]"] additionalProperties: false } output: { type: "object" additionalProperties: true } }