action payments_search_payments { label: "Search payments" description: "Search payments by reference, state, '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/payments" encoding: json input: { type: "object" properties: { card_brand: { type: "string" } cardholder_name: { type: "string" } display_size: { type: "string" } email: { type: "string" } first_digits_card_number: { type: "string" } from_date: { type: "string" } from_settled_date: { type: "string" } last_digits_card_number: { type: "string" } page: { type: "string" } reference: { type: "string" } state: { type: "string" } to_date: { type: "string" } to_settled_date: { type: "string" } } additionalProperties: false } output: { type: "object" additionalProperties: true } }