action nordigen_retrieve_all_supported_institutions_in_a_given_country { label: "retrieve all supported Institutions in a given country" description: "List all available institutions" provider: nordigen method: GET path: "/api/v2/institutions/" encoding: json input: { type: "object" properties: { country: { type: "string" } payments_enabled: { type: "string" } } additionalProperties: false } output: { type: "array" items: { type: "object" description: "Represents an Integration." required: ["countries", "id", "logo", "name"] properties: { bic: { type: "string" } countries: { type: "array" items: { type: "string" } } id: { type: "string" } logo: { type: "string" } name: { type: "string" } transaction_total_days: { type: "string" } } } } }