action nordigen_retrieve_institution { label: "retrieve institution" description: "Get details about a specific Institution" provider: nordigen method: GET path: "/api/v2/institutions/{id}/" encoding: json input: { type: "object" properties: { id: { type: "string" } } required: ["id"] additionalProperties: false } output: { 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" } } } }