action nordigen_payments_creditors_create { label: "payments_creditors_create" description: "API endpoints related to creditor accounts." provider: nordigen method: POST path: "/api/v2/payments/creditors/" encoding: form input: { type: "object" description: "Creditor account write serializer." required: ["account", "currency", "name"] properties: { account: { type: "string" description: "Creditor account type identifier" } address_country: { type: "string" enum: ["AT", "BE", "BG", "HR", "CY", "CZ", "DK", "EE", "FI", "FR", "DE", "GR", "HU", "IS", "IE", "IT", "LV", "LI", "LT", "LU", "MT", "NL", "NO", "PL", "PT", "RO", "SK", "SI", "ES", "SE", "GB"] } address_street: { type: "string" description: "Creditor account address street" } agent: { type: "string" description: "Creditor account BICFI Identifier" } agent_name: { type: "string" description: "Creditor account agent name" } currency: { type: "string" description: "Creditor account currency" } institution_id: { type: "string" description: "an Institution ID for this CreditorAccount" } name: { type: "string" description: "Creditor account name" } post_code: { type: "string" description: "Creditor account address post code" } type: { description: "Creditor account type" type: "object" } } } output: { type: "object" description: "Creditor account write serializer." required: ["account", "currency", "name"] properties: { account: { type: "string" description: "Creditor account type identifier" } address_country: { type: "string" enum: ["AT", "BE", "BG", "HR", "CY", "CZ", "DK", "EE", "FI", "FR", "DE", "GR", "HU", "IS", "IE", "IT", "LV", "LI", "LT", "LU", "MT", "NL", "NO", "PL", "PT", "RO", "SK", "SI", "ES", "SE", "GB"] } address_street: { type: "string" description: "Creditor account address street" } agent: { type: "string" description: "Creditor account BICFI Identifier" } agent_name: { type: "string" description: "Creditor account agent name" } currency: { type: "string" description: "Creditor account currency" } id: { type: "string" format: "uuid" description: "Unique entry ID" } institution_id: { type: "string" description: "an Institution ID for this CreditorAccount" } name: { type: "string" description: "Creditor account name" } post_code: { type: "string" description: "Creditor account address post code" } type: { description: "Creditor account type" type: "object" } } } }