action nordigen_retrieve_all_requisitions { label: "retrieve all requisitions" description: "Retrieve all requisitions belonging to the company" provider: nordigen method: GET path: "/api/v2/requisitions/" 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: "RequisitionV2Serializer." 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: "string" format: "uuid" } } 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)" } } } } } } }