🚨 Shai-Hulud Strikes Again:More than 500 packages and 700+ versions compromised.Technical Analysis →
Socket
Book a DemoInstallSign in
Socket

raiffeisen-retail-api

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
Package was removed
Sorry, it seems this package was removed from the registry

raiffeisen-retail-api

unpublished
Source
npmnpm
Version
1.0.0-alpha5
Maintainers
1
Created
Source

Raiffeisen Retail API Client

NPM Version NPM Downloads GitHub License

A Raiffeisen Retail API client for Node.js and the browser, fully typed with TypeScript.

The NPM package is signed.

Installation

npm install raiffeisen-retail-api

Usage

Examples

import {
  authorize,
  getTransactionalAccountTurnover,
} from 'raiffeisen-retail-api';
import { getAllAccountBalance } from './client';

const main = async () => {
  const client = await authorize('john.doe', 'password123');

  const accounts = await getAllAccountBalance();

  const transactions = await getTransactionalAccountTurnover(client, {
    accountNumber: accounts[0].AccountNumber,
    productCoreID: accounts[0].ProductCodeCore,
    filterParam: {
      CurrencyCodeNumeric: accounts[0].CurrencyCodeNumber,
      FromDate: '30.12.2025',
      ToDate: '30.01.2026',
      ItemType: '',
      ItemCount: '',
      FromAmount: '',
      ToAmount: '',
      PaymentPurpose: '',
    },
  });

  console.log(transactions[0].TransactionID)
};

main();

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts