investec_open_api 0.0.1-nullsafety.1 copy "investec_open_api: ^0.0.1-nullsafety.1" to clipboard
investec_open_api: ^0.0.1-nullsafety.1 copied to clipboard

outdated

A new Flutter package project.

Investec Programmable Banking Open API Wrapper #

A Dart null-safe wrapper to be able to use the Investec OpenAPI from your Dart/Flutter projects

Investec developer documentation

codecov Flutter Test #

Getting Started #

Currently and Active WIP and has not been submitted to pub.dev yet.


Usage #


Setup: #

import 'package:http/http.dart' as http;
import 'investec_open_api/investec_open_api.dart';

final httpClient = http.Client();

final api = InvestecOpenAPI(
  clientId: 'YOUR_CLIENT_ID',
  secret: 'YOUR_SECRET',
  httpClient: httpClient,
);

Available Methods: #

api.getAccounts()

This returns a list of your accounts as well as some meta data

Sample API Response

{
  "data": {
    "accounts": [
      {
        "accountId": "123",
        "accountNumber": "112233",
        "accountName": "John Smith",
        "referenceName": "Mr J Smith",
        "productName": "Private Bank Account"
      }
    ]
  },
  "links": {
    "self": "mock-url"
  },
  "meta": {
    "totalPages": 1
  }
}

Sample resulting dart class


const accounts = AccountsEntity(
  data: AccountsData(
    accounts: [
      AccountEntity(
        accountId: '123',
        accountNumber: '112233',
        accountName: 'John Smith',
        referenceName: 'Mr J Smith',
        productName: 'Private Bank Account',
      )
    ],
  ),
  links: AccountsLinks(
    self: 'mock-url',
  ),
  meta: AccountsMeta(
    totalPages: 1,
  ),
);

api.getAccountTransactions() (Unimplemented)

api.getAccountBalance() (Unimplemented)


Hope you find this useful! Please give a star and feel free to contribute or log issues and feature requests!

And if you want to say thanks, then go ahead:

Buy Me A Coffee

2
likes
0
pub points
0%
popularity

Publisher

unverified uploader

A new Flutter package project.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

equatable, http, universal_io

More

Packages that depend on investec_open_api