action nordigen_requisition_created { label: "requisition created" description: "Create a new requisition" provider: nordigen method: POST path: "/api/v2/requisitions/" encoding: form input: { type: "object" description: "RequisitionV2Serializer." required: ["institution_id", "redirect"] properties: { account_selection: { type: "boolean" description: "option to enable account selection view for the end user" } agreement: { type: "string" format: "uuid" description: "EUA associated with this requisition" } institution_id: { type: "string" description: "an Institution ID for this Requisition" } redirect: { type: "string" format: "uri" description: "redirect URL to your application after end-user authorization with ASPSP" } redirect_immediate: { type: "boolean" description: "enable redirect back to the client after account list received" } reference: { type: "string" description: "additional ID to identify the end user" } ssn: { type: "string" description: "optional SSN field to verify ownership of the account" } user_language: { type: "string" description: "A two-letter country code (ISO 639-1)" } } } output: { type: "object" description: "Create requisition." required: ["institution_id", "redirect"] properties: { account_selection: { type: "boolean" description: "option to enable account selection view for the end user" } accounts: { type: "array" description: "array of account IDs retrieved within a scope of this requisition" items: { type: "object" } } agreement: { type: "string" format: "uuid" description: "EUA associated with this requisition" } created: { type: "string" format: "date-time" description: "The date & time at which the requisition was created." } id: { type: "string" format: "uuid" } institution_id: { type: "string" description: "an Institution ID for this Requisition" } link: { type: "string" format: "uri" description: "link to initiate authorization with Institution" } redirect: { type: "string" format: "uri" description: "redirect URL to your application after end-user authorization with ASPSP" } redirect_immediate: { type: "boolean" description: "enable redirect back to the client after account list received" } reference: { type: "string" description: "additional ID to identify the end user" } ssn: { type: "string" description: "optional SSN field to verify ownership of the account" } status: { description: "status of this requisition" type: "object" } user_language: { type: "string" description: "A two-letter country code (ISO 639-1)" } } } }