rene-roscher/number26

Simple Laravel Wrapper for the N26 Banking oAuth API

0.0.5 2021-01-26 03:46 UTC

This package is auto-updated.

Last update: 2024-03-26 10:34:56 UTC


README

Installation

composer require rene-roscher/number26

Usage

$n26 = new \RServices\Number26('your@emailAddress.com', 'password');

// Get Transactions
$transactions = $n26->getTransactions();

// Get Me
$me = $n26->getMe();

// Get Contacts
$contacts = $n26->getContacts();