action nordigen_payments_creditors_retrieve { label: "payments_creditors_retrieve" description: "API endpoints related to creditor accounts." provider: nordigen method: GET path: "/api/v2/payments/creditors/{id}/" encoding: json input: { type: "object" properties: { id: { type: "string" format: "uuid" description: "Unique entry ID" } } required: ["id"] additionalProperties: false } output: { 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" } } } }