action nordigen_retrieve_account_metadata { label: "retrieve account metadata" description: "Access account metadata.\n\nInformation about the account record, such as the processing status and IBAN.\n\nAccount status is recalculated based on the error count in the latest req." provider: nordigen method: GET path: "/api/v2/accounts/{id}/" encoding: json input: { type: "object" properties: { id: { type: "string" format: "uuid" description: "A UUID string identifying this account." } } required: ["id"] additionalProperties: false } output: { type: "object" description: "AccountV2Serializer." properties: { created: { type: "string" format: "date-time" description: "The date & time at which the account object was created." } iban: { type: "string" description: "The Account IBAN" } id: { type: "string" format: "uuid" description: "The ID of this Account, used to refer to this account in other API calls." } institution_id: { type: "string" description: "The ASPSP associated with this account." } last_accessed: { type: "string" format: "date-time" description: "The date & time at which the account object was last accessed." } owner_name: { type: "string" description: "The name of the account owner." } status: { description: "The processing status of this account." type: "object" } } } }