action nordigen_list_payments { label: "list payments" description: "Retrieve all payments belonging to the company" provider: nordigen method: GET path: "/api/v2/payments/" encoding: json input: { type: "object" properties: { limit: { type: "integer" } offset: { type: "integer" } } 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: "PaymentReadSerializer." required: ["creditor_account", "debtor_account", "instructed_amount", "redirect"] properties: { creditor_account: { type: "string" format: "uuid" description: "Registered creditor account" } custom_payment_id: { type: "string" description: "Payment Custom Payment ID" } debtor_account: { type: "object" description: "Debtor account write serializer." required: ["name"] properties: { account: { type: "string" description: "Debtor account type identifier" } address_country: { type: "string" description: "Debtor account address country" } address_street: { type: "string" description: "Debtor account address street" } currency: { type: "string" description: "Debtor account currency" } name: { type: "string" description: "Debtor account name" } post_code: { type: "string" description: "Debtor account post code" } type: { description: "Debtor account type" type: "object" } type_number: { type: "string" description: "Debtor account type identifier" } } } description: { type: "string" description: "Payment description" } instructed_amount: { description: "Instructed amount" type: "object" } payment_id: { type: "string" description: "Payment ID" } payment_product: { description: "Payment product" type: "object" } payment_status: { description: "Payment end to end identification" type: "object" } payment_type: { description: "Payment Type" type: "object" } redirect: { type: "string" format: "uri" description: "Redirect URL to your application after payment is done" } } } } } } }