action nordigen_accounts_transactions_retrieve { label: "accounts_transactions_retrieve" description: "Access account transactions.\n\nTransactions will be returned in Berlin Group PSD2 format." provider: nordigen method: GET path: "/api/v2/accounts/{id}/transactions/" encoding: json input: { type: "object" properties: { 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 } }