action nordigen_retrieve_all_payment_creditor_accounts { label: "retrieve all payment creditor accounts" description: "Retrieve all payment creditor accounts" provider: nordigen method: GET path: "/api/v2/payments/account/" encoding: json output: { type: "array" items: { type: "object" description: "Creditor account read serializer." required: ["account", "currency", "name"] properties: { account: { type: "string" description: "Creditor account type identifier" } address_country: { type: "string" description: "Creditor account address country" } currency: { type: "string" description: "Creditor account currency" } id: { type: "string" format: "uuid" description: "Unique entry ID" } name: { type: "string" description: "Creditor account name" } type: { description: "Creditor account type" type: "object" } } } } }