action nordigen_retrieve_account_transactions_v2 { label: "retrieve account transactions v2" description: "Access account premium transactions." provider: nordigen method: GET path: "/api/v2/accounts/premium/{id}/transactions/" encoding: json input: { type: "object" properties: { country: { type: "string" } date_from: { type: "string" format: "date" } date_to: { type: "string" format: "date" } id: { type: "string" format: "uuid" description: "A UUID string identifying this account." } } required: ["id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }