action nordigen_payments_creditors_list { label: "payments_creditors_list" description: "API endpoints related to creditor accounts." provider: nordigen method: GET path: "/api/v2/payments/creditors/" encoding: json input: { type: "object" properties: { account: { type: "string" } address_country: { type: "string" } agent: { type: "string" } currency: { type: "string" } limit: { type: "integer" } name: { type: "string" } offset: { type: "integer" } type: { type: "string" } } additionalProperties: false } output: { type: "object" properties: { count: { type: "integer" } next: { type: "string" format: "uri" } previous: { type: "string" format: "uri" } results: { 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" } } } } } } }