action payments_search_refunds { label: "Search refunds" description: "Search refunds by 'from' and 'to' date. The Authorisation token needs to be specified in the 'authorization' header as 'authorization: Bearer YOUR_API_KEY_HERE'" provider: payments method: GET path: "/v1/refunds" encoding: json input: { type: "object" properties: { display_size: { type: "string" } from_date: { type: "string" } from_settled_date: { type: "string" } page: { type: "string" } to_date: { type: "string" } to_settled_date: { type: "string" } } additionalProperties: false } output: { type: "object" additionalProperties: true } }