action nordigen_create_payment { label: "create payment" description: "Create payment" provider: nordigen method: POST path: "/api/v2/payments/" encoding: form input: { type: "object" description: "PaymentWriteSerializer." required: ["creditor_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: { description: "Debtor account" type: "object" } description: { type: "string" description: "Payment description" } institution_id: { type: "string" description: "Institution ID for Payment" } instructed_amount: { description: "Instructed amount" type: "object" } payment_product: { description: "Payment product" type: "object" } periodic_payment: { type: "object" description: "Periodic Payment Serializer." required: ["start_date"] properties: { day_of_execution: { type: "string" } end_date: { type: "string" format: "date" } execution_rule: { description: "Behavior when periodic payment dates fall on holiday." type: "object" } frequency: { type: "object" } start_date: { type: "string" format: "date" } } } redirect: { type: "string" format: "uri" description: "Redirect URL to your application after payment is done" } requested_execution_date: { type: "string" format: "date" description: "Payment Execution date (for periodic payments)" } } } output: { type: "object" description: "PaymentWriteSerializer." required: ["creditor_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" } description: { type: "string" description: "Payment description" } instructed_amount: { description: "Instructed amount" type: "object" } link: { type: "string" format: "uri" description: "Link to initiate authorization with Institution" } 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" } periodic_payment: { type: "object" description: "Periodic Payment Serializer." required: ["start_date"] properties: { day_of_execution: { type: "string" } end_date: { type: "string" format: "date" } execution_rule: { description: "Behavior when periodic payment dates fall on holiday." type: "object" } frequency: { type: "object" } start_date: { type: "string" format: "date" } } } redirect: { type: "string" format: "uri" description: "Redirect URL to your application after payment is done" } requested_execution_date: { type: "string" format: "date" description: "Payment Execution date (for periodic payments)" } } } }