npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@datafire/biapi_pro

v3.0.0

Published

DataFire integration for Budgea API Documentation

Downloads

4

Readme

@datafire/biapi_pro

Client library for Budgea API Documentation

Installation and Usage

npm install --save @datafire/biapi_pro
let biapi_pro = require('@datafire/biapi_pro').create();

.then(data => {
  console.log(data);
});

Description

Budgea Development Guides

Welcome to Budgea's documentation.

This documentation is intended to get you up-and-running with our APIs and advise on the implementation of some regulatory aspects of your application, following the DSP2's guidelines.

Getting Started

IMPORTANT Depending on your status with regard of the DSP2 regulation, agent or partner, you may call our APIs or simply use our Webview and callbacks to get the financial data of your users. As an agent, you are allowed to call directly our APIs and implement your own form to get the user's credentials. As a partner, you cannot manipulate the credentials, and have to delegate this step to us through our webview.

The sections below will document how to use our APIs, make sure you have the agent status to do so. For the partner, please refer to the section Webview and Callbacks of this documentation.

Overview

Your API is a REST API which requires a communication through https to send and receive JSON documents. During your tests, we recommend to make calls to the API with curl or any other HTTP client of your choice. You can watch a video demonstration on this URL. For the examples we'll use the demo API with address https://demo.biapi.pro, you should change that name to your API's name.

Hello World

Let's start by calling the service /banks which lists all available banks.

curl https://demo.biapi.pro/2.0/banks/

To log in to a bank webpage, you'll need to know for a given bank, the fields your user should fill in the form. Let's call a specific bank and ask for an additional resource fields.

curl https://demo.biapi.pro/2.0/banks/59?expand=fields

The response here concerns only 1 bank (since we specified an id) and the resource Fields is added to the response thanks to the query parameter expand.

To get more interesting things done, you'll need to send authenticated requests.

Authentication

The way to authenticate is by passing the Authorization: Bearer <token> header in your request. At the setup a manage token have been generated, you can use this token for now, when creating your user we'll see how to generate a user's token.

curl https://demo.biapi.pro/2.0/config \
  -H 'Authorization: Bearer <token>'

This endpoint will list all the parameters you can change to adapt Budgea to your needs.

We've covered the very first calls. Before diving deeper, let's see some general information about the APIs.

Abstract

API URL

https://demo.biapi.pro/2.0

Requests format

Data format: application/x-www-form-urlencoded or application/json (suggested)

Additional headers: Authorization: User's token (private)

Responses format

Data format: application/json (http://www.json.org) Charset: UTF-8

Resources

Each call on an endpoint will return resources. The main resources are: | Resource | Description | | ---------------------|:------------------------------------------------------------------------------------------------------------------ | |Users |Represent a user | |Connection |A set of data used to authenticate on a website (usually a login and password). There is 1 connection for each website| |Account |A bank account contained in a connection | |Transaction |An entry in a bank account | |Investment |An asset in a bank account |

The chain of resources is as follow: Users ∈ Connections ∈ Accounts ∈ Transactions or Investments

RESTful API

This API is RESTful, which means it is stateless and each resource is accessed with an unique URI.

Several HTTP methods are available:

| Method | Description | | ------------------------|:-------------------------------| | GET /resources | List resources | | GET /resources/{ID} | Get a resource from its ID | | POST /resources | Create a new resource | | POST /resources/{ID} | Update a resource | | PUT /resources /{ID} | Update a resource | | DELETE /resources | Remove every resources | | DELETE /resources/{ID} | Delete a resource |

Each resource can contain sub-resources, for example: /users/me/connections/2/accounts/23/transactions/48

HTTP response codes

| Code | Message | Description | | ----------- |:---------------------:|-----------------------------------------------------------------------------------------------| | 200 | OK |Default response when a GET or POST request has succeed | | 202 | Accepted |For a new connection this code means it is necessary to provide complementary information (2FA)| | 204 | No content |Default response when a POST request succeed without content | | 400 | Bad request |Supplied parameters are incorrect | | 403 | Forbidden |Invalid token | | 500 | Internal Servor Error |Server error | | 503 | Service Unavailable |Service is temporarily unavailable |

Errors management

In case an error occurs (code 4xx or 5xx), the response can contain a JSON object describing this error:

{
   "code": "authFailure",
   "message": "Wrong password"  // Optional
}

If an error is displayed on the website, Its content is returned in error_message field. The list of all possible errors is listed further down this page.

Authentication

A user is authenticated by an access_token which is sent by the API during a call on one of the authentication services, and can be supplied with this header: Authorization: Bearer YYYYYYYYYYYYYYYYYYYYYYYYYYY

There are two user levels:

- Normal user, which can only access to his own accounts
- Administrator, with extended rights

Default filters

During a call to an URI which lists resources, some filters can be passed as query parameters:

| Parameter | Type | Description | | ----------- |:---------:|-----------------------------------------------------------| | offset | Integer |Offset of the first returned resource | | limit | Integer |Limit number of results | | min_date | Date |Minimal date (if supported by service), format: YYYY-MM-DD | | max_date | Date |Maximal date (if supported by service), format: YYYY-MM-DD |

Extend requests

During a GET on a set of resources or on a unique resource, it is possible to add a parameter expand to the request to extend relations with other resources:

GET /2.0/users/me/accounts/123?expand=transactions[category],connection

{
   "id" : 123
   "name" : "Compte chèque"
   "balance" : 1561.15
   "transactions" : [
      {
         "id" : 9849,
         "simplified_wording" : "HALL'S BEER",
         "value" : -513.20,
         ...
         "category" : {
            "id" : 561,
            "name" : "Sorties / Bar",
            ...
         }
       },
       ...
   ],
   "id_user" : 1,
   "connection" : {
      "id" : 1518,
      "id_bank" : 41,
      "id_user" : 1,
      "error" : null,
      ...
   }
}

Request example

GET /2.0/banks?offset=0&limit=10&expand=fields
Host: demo.biapi.pro
Accept: application/json
Authorization: Bearer <token>
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 3026
Server: Apache
Date: Fri, 14 Mar 2014 08:24:02 GMT

{
   "banks" : [
      {
         "id_weboob" : "bnporc",
         "name" : "BNP Paribas",
         "id" : 3,
         "hidden" : false,
         "fields" : [
            {
               "id" : 1,
               "id_bank" : 3,
               "regex" : "^[0-9]{5,10}$",
               "name" : "login",
               "type" : "text",
               "label" : "Numéro client"
            },
            {
               "id" : 2,
               "id_bank" : 3,
               "regex" : "^[0-9]{6}$",
               "name" : "password",
               "type" : "password",
               "label" : "Code secret"
            }
         ]
      },
      ...
   ]
   "total" : 41
}

Constants

List of bank account types

| Type |Description | | ----------- |-----------------------------------| | checking |Checking account | | savings |Savings account | | deposit |Deposit accounts | | loan |Loan | | market | Market accounts | | joint |Joint account | | card |Card | | lifeinsurance |Life insurance accounts | | pee |Plan Épargne Entreprise | | perco |Plan Épargne Retraite | | article83 |Article 83 | | rsp |Réserve spéciale de participation | | pea |Plan d'épargne en actions | | capitalisation|Contrat de capitalisation | | perp |Plan d'épargne retraite populaire | | madelin |Contrat retraite Madelin | | unknown |Inconnu |

List of transaction types

| Type |Description | | ----------- |-----------------------------------| |transfer |Transfers | |order |Orders | |check |Checks | |deposit |Cash deposit | |payback |Payback | |withdrawal |Withdrawal | |loan_payment |Loan payment | |bank |Bank fees | |card |Card operation | |deferred_card |Deferred card operation | |card_summary |Mensual debit of a deferred card |

List of synchronization errors

Error on Connection object

The error field may take one of the below values in case of error when accessing the user space.

| Error |Description | | ----------------------- |--------------------------------------------------------------------------------------------------| |wrongpass |The authentication on website has failed | |additionalInformationNeeded |Additional information is needed such as an OTP | |websiteUnavailable |The website is unavailable, for instance we get a HTTP 503 response when requesting the website | |actionNeeded |An action is needed on the website by the user, scraping is blocked | |SCARequired |An SCA process must be done by updating the connection | |decoupled |Requires a user validation (ex: digital key)| |passwordExpired |The password has expired and needs to be changed on the website. | |webauthRequired |A complete authentication process is required by update the connection via redirect | |bug |A bug has occurred during the synchronization. An alert has been sent to Budget Insight |

Error on Account object

Errors can be filled at the account level in case we access the user's dashboard but some account related data cannot be retrieved. For instance, we may not access the transactions or investments for a specific account. Getting an error during an account synchronization does not impact the scraping of other acccounts.

| Error |Description | | ----------------------- |--------------------------------------------------------------------------------------------------| |websiteUnavailable |The website or a page is unavailable | |actionNeeded |An action is needed on the website by the user, scraping is blocked | |bug |A bug has occurred during the synchronization. An alert has been sent to Budget Insight |

Now you know the basics of Budgea API

  • Basic call to retrieve resources
  • Add query parameters to aplly filters
  • Expand resources
  • Authenticated calls

We're good for the basics! Now let's see how to integrate Budgea in your app and create your first user.

Integrate Budgea (protocol or Webview)

The workflow

Users of your application exist in the Budgea API. Every User is identified by an access_token which is the shared secret between your application and our API.

The workflow is as below:

  1. The user is on your application and wants to share his bank accounts or invoices.
  2. A call is made client side (browser's javascript or desktop application) to create a temporarily token which will be used to make API calls.
  3. A form is built, allowing the user to select the connector to use (bank or provider, depending on context). Every connector requires different kind of credentials.
  4. A call on the API is made with the temporarily token to add a Connection with the credentials supplied by user.
  5. In case of success, the user chooses what bank accounts (Account) or subscriptions (Subscription) he wants to share with your application.
  6. When he validates the share, the temporarily token is transmitted to your server. This one will call the Budgea API with this token to get a permanent token.

Note In case your application works without a server (for example a desktop application), the permanent token can be obtained on the 1st step, by supplying a client_secret to /auth/init and the step 6 is omitted. To get more information, read the protocol.

There are 3 steps to integrate Budgea in your application:

  1. Provide a way for your users to share their credentials with you
  2. Get the data scraped from Budgea
  3. Be sure to follow the good practices before going into production

Get credentials from users

You have 2 options here:

  • Integrate the Budget Insight's Webview, a turnkey solution to get user's credentials
  • Create your own form following the protocol (must have the agent status)

Budgea webview

The Budgea webview complements REST API endpoints with web-based services to handle sensitive or complex operations:

  • add a connection (to a bank or a provider), or edit/repare access to a connection;
  • manage connections (add/remove/edit);
  • edit and validate bank transfers (alpha preview).

Usage of the webview is mandatory if you don't hold an Agent status, since you are not allowed to use API endpoints carrying user credentials, and optional otherwise.

Implementation guidelines

Base URL

The base URL of all services must be customized:
https://{{domain}}.biapi.pro/2.0/auth/webview/
https://{{domain}}.biapi.pro/2.0/auth/webview/{{lang}}/

  • {{domain}}: substitute with you API domain;
  • {{lang}}: optionally specify the language of the webview, en or fr (if not specified, an automatic redirection will be performed following the language of the browser).
Browser integration

Services available as part of the webview are designed as parameterized URLs intended to be opened in a web browser. A callback URI must be specified by callers to be notified at the end of the operation flow, similar to OAuth 2 specification.

You are encouraged to integrate web-based steps in your product following UX best practices:

  • in a web environment, perform a full-page redirect to the URL (using either HTTP redirect or scripting), and avoid new tabs or popups;
  • in a native Android app, prefer opening the default browser or relying on Chrome Custom Tabs to integrating a WebView;
  • in a native iOS app, prefer using a SFSafariViewController to integrating a WKWebView.
Callback handling

Most flows redirect to a callback URI at the end of the process. Query parameters are added to the URI to identify successful or failed operations.

Successful parameters are specific to each flow. In case of an error, the following parameters are added:

| Parameter | Description | | - | - | | error | An lowercase string error code identifying the kind of error that occurred. When the parameter is not present, the response is successful. | | error_description | A longer string description of the error (not intended for user display). |

Common error codes include:

| Code | Description | | - | - | | access_denied | The user explicitly cancelled the flow. | | server_error | Oops, a technical failure occurred during the process. |

Forward compatibility requirement: Additional error codes may be added in the future to describe specific cases. When implementing error codes handling, always fallback to a generic case for unknown codes.

Browser compatibility

The webview is designed and tested to work with browsers supported by the Angular framework:
https://angular.io/guide/browser-support

Privacy / GDPR status

The webview itself does not use any kind of long-term data persistence mechanism such as cookies or local storage, but some authentication or authorization steps may delegate to third-party web services that may implement them.

Configuration

You can configure the appearance and behaviour of the webview by configuring the associated Client Application in the console:

| Key | Format | Description | | - | - | - | | primary_color | String | Optional. An accent color (hexadecimal string without '#' prefix) to personalize the UI elements of the webview. If absent, the default color is grey. | | redirect_uri | String | Optional. A recommended security whitelist configuration. The redirect_uri parameter sent to any endpoint of the webview is checked against the configuration, if any. | | config.disable_connector_hints | Boolean | Optional. This flags hides the list of most-used entries in the connector selection step. The default is false, i.e. the list is shown. | | config.use_app_layout | Boolean | Optional. Use this flag to enable presenting your log as an app icon. The default value is false, i.e. the logo is shown in the top bar of the UI. | | config.disable_accounts_pre_check | Boolean | Optional. An optional boolean flag to prevent bank accounts to be automatically pre-checked when the user enters the activation step. The default value is false, i.e. the bank accounts are pre-checked. |

Endpoints reference

Add connection flow
https://{{domain}}.biapi.pro/2.0/auth/webview/{{lang}}/connect

This flow allows an end-user to add a new connection to the API. The flow handles the following steps:

  • selecting a connector;
  • authenticating & authorizing with the connector, by collecting credentials or delegating;
  • managing consent to aggregate accounts/subscriptions;
  • collecting required information for professional accounts.
Endpoint parameters

| Parameter | Description | | - | - | | client_id | Required. The ID of the requesting client application. You can manage client applications of your domain in the admin console. | | redirect_uri | Required. An absolute callback URI. The webview will redirect to it at the end of the flow. | | code | Optional. A user-scoped temporary code to use with the Budgea API.If you don't provide a code, a new anonymous user will be created before the connection is added, and you will be returned an access token code scoped to it with the success callback. | | state | Optional. An opaque string parameter that you can use to carry state across the flow. The parameter will be set "as is" on the callback URI. Make sure that the state you provide is properly URL-encoded. | | connector_ids | Optional. A comma-separated list of connector IDs available to pick from.If the parameter is omitted, all active connectors are available.If you pass a single value, the user is not prompted to choose the connector.This parameter is mutually exclusive with connector_uuids. | | connector_uuids | Optional. A comma-separated list of connector UUIDs available to pick from.If the parameter is omitted, all active connectors are available.If you pass a single value, the user is not prompted to choose the connector.This parameter is mutually exclusive with connector_ids. | | connector_capabilities | Optional. A comma-separated list of capabilities to filter available connectors.If the parameter is omitted, bank is inferred.If multiple values are provided, only connectors that expose all the requested capabilities are available.To request a bank connection, use bank.To request a provider connection, use document. | | account_ibans | Optional. A comma-separated list of IBANs to filter accounts available for activation in a bank connection context. Other accounts will not be selectable. | | account_types | Optional. A comma-separated list of account types to filter accounts available for activation in a bank connection context. Other accounts will not be selectable. | | account_usages | Optional. A comma-separated list of account usages to filter accounts available for activation in a bank connection context. Other accounts will not be selectable. |

Successful callback parameters

| Parameter | Description | | - | - | | connection_id | The id of the newly created connection. Please note that when redirecting to the callback URI, the accounts and/or subscriptions are available in the API, but bank transactions or documents may still be syncing in background. | | code | Optional. If a code was not initially specified, an API code that you must exchange to obtain a permanent access token associated with the newly-created anonymous user holding the connection. The parameter is URL-encoded, make sure to handle it accordingly. | | state | Optional. Identical to the state parameter that was initially specified. |

Additional error codes

| Code | Description | | - | - | | tos_declined | The end-user refused to validate the terms of service. |

Re-auth / edit connection credentials flow
https://{{domain}}.biapi.pro/2.0/auth/webview/{{lang}}/reconnect

This flow allows an end-user to re-authenticate against a bank or a provider in order to recover an existing connection, or to completely reset credentials associated with a connection.

Endpoint parameters

| Parameter | Description | | - | - | | client_id | Required. The ID of the requesting client application. You can manage client applications of your domain in the admin console. | | redirect_uri | Required. An absolute callback URI. The webview will redirect to it at the end of the flow. | | code | Required. A user-scoped temporary code to use with the Budgea API. | | connection_id | Required. The id of the existing connection. | | state | Optional. An opaque string parameter that you can use to carry state across the flow. The parameter will be set "as is" on the callback URI. Make sure that the state you provide is properly URL-encoded. | | reset_credentials | Optional. In the default mode (false), the service will try to recover the connection and prompt the user only with outdated or transient information (new password, OTP...).Set the parameter to true to force resetting all the credentials associated with the connection. This parameter may not apply to all connectors. |

Successful callback parameters

This flow adds no parameter to the callback URI in case of success, except from state.

Manage connections
https://{{domain}}.biapi.pro/2.0/auth/webview/{{lang}}/manage

This flow allows an end-user to manage the connections associated with his account in the API. The user can add new connections, remove existing ones, fix connection errors, reset credentials or activate/deactivate bank accounts.

Support of redirect_uri in this flow is optional, as it can be integrated or presented as a terminal step, without relying on a final redirection.

Endpoint parameters

| Parameter | Description | | - | - | | client_id | Required. The ID of the requesting client application. You can manage client applications of your domain in the admin console. | | code | Required. A user-scoped temporary code to use with the Budgea API. | | redirect_uri | Optional. An absolute callback URI. When provided, the webview will display a close button that redirects to it. | | state | Optional. An opaque string parameter that you can use to carry state across the flow when providing a redirect_uri. The parameter will be set "as is" on the callback URI. Make sure that the state you provide is properly URL-encoded. | | connector_capabilities | Optional. A comma-separated list of capabilities to filter available connectors when adding a new connection.If the parameter is omitted, bank is inferred.If multiple values are provided, only connectors that expose all the requested capabilities are available.To request a bank connection, use bank.To request a provider connection, use document. | | account_types | Optional. A comma-separated list of account types to filter accounts available for activation on adding a new bank connection or updating existing connections. Other accounts will not be selectable. | | account_usages | Optional. A comma-separated list of account usages to filter accounts available for activation in a bank connection context. Other accounts will not be selectable. |

Callback parameters

This flow adds no parameter to the callback URI, except from state.

Execute a bank transfer (preview)

Disclaimer: Transfer or payment services are available as a preview, protocols and parameters are subject to change in upcoming beta/final releases.

https://{{domain}}.biapi.pro/2.0/auth/webview/{{lang}}/transfer

This flow allows an end-user to execute a bank transfer. The flow handles the following steps:

  • if the transfer is not already created, all steps to authenticate with a bank, select the recipient, the emitter account, the amount and label;
  • executing the transfer, including managing SCAs for recipient registration and/or transfer validation.
Endpoint parameters

| Parameter | Description | | - | - | | client_id | Required. The ID of the requesting client application. You can manage client applications of your domain in the admin console. | | redirect_uri | Required. An absolute callback URI. The webview will redirect to it at the end of the flow. | | code | Required. A user-scoped temporary code to use with the Budgea API.If you don't provide a code, a new anonymous user will be created before a connection is added and the transfer is executed, and you will be returned an access token code scoped to it with the success callback. | | state | Optional. An opaque string parameter that you can use to carry state across the flow. The parameter will be set "as is" on the callback URI. Make sure that the state you provide is properly URL-encoded. | | transfer_id| Optional. The ID of an prepared transfer to be validated in the webview. The user cannot edit anything on the transfer before validation. |

Successfull callback parameters

| Parameter | Description | | - | - | | transfer_id | The ID of the transfer that was created and executed. | | code | Optional. If a code was not initially specified, an API code that you can exchange to obtain a permanent access token associated with the newly-created anonymous user holding the transfer. The parameter is URL-encoded, make sure to handle it accordingly. | | state | Optional. Identical to the state parameter that was initially specified. |

Additional error codes

| Code | Description | | - | - | | tos_declined | The end-user refused to validate the terms of service. |

Migrating from v3

We provide a full backward compatibility layer with current implementations of the webview v3 to ease the transition. All endpoints remains accessible, with the same parameters and callback behaviour. Migration instructions are provided below.

The v3 compatibility mode is expected to be removed on 31 December 2019. You should migrate your implementation a soon as possible to new endpoints and parameters.

Add connection flow / Edit connection credentials
/connect/select

This endpoint has been superseded by /connect (no suffix) for adding a new connection, and /reconnect for resetting or updating an existing connection.

| Endpoint parameter | Migration instructions | | - | - | | client_id | No change. | | redirect_uri, state | No change. | | response_type | This parameter is not used anymore. | | id_connector, connectors | Superseded by connector_ids sent to the /connect endpoint. | | types | Superseded by connector_capabilities sent to the /connect endpoint.Useconnector_capabilities=bank (bank connection) or connector_capabilities=document (provider connection). | | id_connection | Superseded by connection_id sent to the /reconnect endpoint. |

Passing the code or access token as an URL fragment is no longer supported, use the code query parameter.

| Callback parameter | Migration instructions | | - | - | | id_connection | Superseded by connection_id.In the /reconnect flow, this parameter is not returned anymore. | | code | Still named code, but in the /connect flow the parameter is now only added if an anonymous user was created, i.e. the code parameter was not provided as a query parameter or fragment.In the /reconnect flow, this parameter is not returned anymore. | | state | No change. |

Manage connections
/accounts

This endpoint has been superseded by /manage, that now fully allows users to add/remove connections, reset their credentials or recover from error states.

| Endpoint parameter | Migration instructions | | - | - | | client_id | No change. | | redirect_uri, state | No change, these parameters are now optional. | | response_type | This parameter is not used anymore. | | types | Superseded by connector_capabilities.Useconnector_capabilities=bank (bank connection) or connector_capabilities=document (provider connection). |

Passing the code or access token as an URL fragment is no longer supported, use the code query parameter.

| Callback parameter | Migration instructions | | - | - | | code | This parameter is not returned anymore. | | state | No change. |

Behaviour change

In v3, the /accounts flow used to redirect to the redirect_uri after a connection addition. This is no longer the case in v4, where redirection is only performed when the user explicitly closes the flow. If you need to perform actions when a connection is added or removed, you should rely on webhooks.

Protocol

This section describes the protocol used to set bank and provider accounts of a user, in case you don't want to use the webview.

The idea is to call the following services client-side (with AJAX in case of a web application), to ensure the bank and providers credentials will not be sent to your servers.

  1. /auth/init
POST /auth/init
{
   "auth_token" : "fBqjMZbYddebUGlkR445JKPA6pCoRaGb",
   "type" : "temporary",
   "expires_in" : 1800,
   "id_user": 1
}

This service creates a temporarily token, to use in the "Authorization" header in next calls to the API

The returned token has a life-time of 30 minutes, and should be transfered to the API then (cf Permanent Token), so that your server can get a permanent access_token.

It is possible to generate a permanent token immediately, by calling the service with the manage_token, or by supply parameters client_id and client_secret.

  1. /banks or /providers
GET /banks?expand=fields
Authorization: Bearer <token>
{
   "hidden" : false,
         "charged" : true,
         "name" : "American Express",
         "id" : 30,
         "fields" : [
            {
               "values" : [
                  {
                     "label" : "Particuliers/Professionnels",
                     "value" : "pp"
                  },
                  {
                     "value" : "ent",
                     "label" : "Entreprises"
                  }
               ],
               "label" : "Type de compte",
               "regex" : null,
               "name" : "website",
               "type" : "list"
            },
            {
               "type" : "password",
               "label" : "Code secret",
               "name" : "password",
               "regex" : "^[0-9]{6}$"
            }
         ],
      },
      ...
   ],
   "total" : 44,
}

You get a list of connectors, and all associated fields needed to build the form at step 3. You can also use that list to show to your user, all available banks.

  1. /users/me/connections Make a POST request and supply the id_bank (ID of the chosen bank) or id_provider (ID of provider), and all requested fields as key/value parameters. For example:
POST /users/me/connections
Authorization: Bearer <token>
-F login=12345678
-F password=123456
-F id_bank=59

You can get the following return codes:

|Code |Description | |---------------|------------------------------------------------------------ | |200 |The connection has succeed and has been created | |202 |It is necessary to provide complementary information. This occurs on the first connection on some kind of Boursorama accounts for example, where a SMS is sent to the customer. It is necessary to ask the user to fill fields requested in the fields, and do a POST again on /users/me/connections/ID, with the connection ID in id_connection. | |400 |Unable to connect to the website, the field error in the JSON can be websiteUnavailable or wrongpass | |403 |Invalid token |

  1. Activate accounts The accounts the user wants to aggregate must be activated before any transaction or investment is retrieved. Several accounts can be activated in 1 request by separating the account ids with commas.
PUT /users/me/connections/<id_connection>/accounts/<id_account>?all
  1. Permanent token If the user validates the share of his accounts, it is necessary to transform the temporary code to a permanent access_token (so that the user won't expire).

To do that, make a POST request on /auth/token/access with the following parameters: |Parameter |Description | |---------------------|----------------------------------------------------------------| |code |The temporarily token which will let you get the access_token | |client_id |The ID of your client application | |client_secret |The secret of your client application |

POST /auth/token/access

{
   "client_id" : 17473055,
   "client_secret" : "54tHJHjvodbANVzaRtcLzlHGXQiOgw80",
   "code" : "fBqjMZbYddebUGlkR445JKPA6pCoRaGb"
}
HTTP/1.1 200 OK

{
   "access_token" : "7wBPuFfb1Hod82f1+KNa0AmrkIuQ3h1G",
   "token_type":"Bearer"
}

Update accounts

Another important call is when a user wants to add/remove connections to banks or providers, or to change the password on one of them, it is advised to give him a temporarily code from the permanent access_token, with the following call (using the access_token as bearer):

POST /auth/token/code
Authorization: Bearer <token>
{
   "code" : "/JiDppWgbmc+5ztHIUJtHl0ynYfw682Z",
   "type" : "temporary",
   "expires_in" : 1800,
}

Its life-time is 30 minutes, and let the browser to list connections and accounts, via GET /users/me/connections?expand=accounts for example.

To update the password of a connection, you can do a POST on the connection resource, with the field password in the data. The new credentials are checked to make sure they are valid, and the return codes are the same as when adding a connection.

Getting the data (Webhooks)

You have created your users and their connections, now it's time to get the data. There are 2 ways to retrieve it, the 2 can be complementary:

  • make regular calls to the API
  • use the webhooks (recommended)

Manual Synchronization

It is possible to do a manual synchronization of a user. We recommend to use this method in case the user wants fresh data after logging in.

To trigger the synchronization, call the API as below: PUT /users/ID/connections The following call is blocking until the synchronization is terminated.

Even if it is not recommended, it's possible to fetch synchronously new data. To do that, you can use the expand parameter: /users/ID/connections?expand=accounts[transactions,investments[type]],subscriptions

{
   "connections" : [
      {
         "accounts" : [
            {
               "balance" : 7481.01,
               "currency" : {
                  "symbol" : "€",
                  "id" : "EUR",
                  "prefix" : false
               },
               "deleted" : null,
               "display" : true,
               "formatted_balance" : "7 481,01 €",
               "iban" : "FR76131048379405300290000016",
               "id" : 17,
               "id_connection" : 7,
               "investments" : [
                  {
                     "code" : "FR0010330902",
                     "description" : "",
                     "diff" : -67.86,
                     "id" : 55,
                     "id_account" : 19,
                     "id_type" : 1,
                     "label" : "Agressor PEA",
                     "portfolio_share" : 0.48,
                     "prev_diff" : 2019.57,
                     "quantity" : 7.338,
                     "type" : {
                        "color" : "AABBCC",
                        "id" : 1,
                        "name" : "Fonds action"
                     },
                     "unitprice" : 488.98,
                     "unitvalue" : 479.73,
                     "valuation" : 3520.28
                  }
               ],
               "last_update" : "2015-07-04 15:17:30",
               "name" : "Compte chèque",
               "number" : "3002900000",
               "transactions" : [
                  {
                     "active" : true,
                     "application_date" : "2015-06-17",
                     "coming" : false,
                     "comment" : null,
                     "commission" : null,
                     "country" : null,
                     "date" : "2015-06-18",
                     "date_scraped" : "2015-07-04 15:17:30",
                     "deleted" : null,
                     "documents_count" : 0,
                     "formatted_value" : "-16,22 €",
                     "id" : 309,
                     "id_account" : 17,
                     "id_category" : 9998,
                     "id_cluster" : null,
                     "last_update" : "2015-07-04 15:17:30",
                     "new" : true,
                     "original_currency" : null,
                     "original_value" : null,
                     "original_wording" : "FACTURE CB HALL'S BEER",
                     "rdate" : "2015-06-17",
                     "simplified_wording" : "HALL'S BEER",
                     "state" : "parsed",
                     "stemmed_wording" : "HALL'S BEER",
                     "type" : "card",
                     "value" : -16.22,
                     "wording" : "HALL'S BEER"
                  }
               ],
               "type" : "checking"
            }
         ],
         "error" : null,
         "expire" : null,
         "id" : 7,
         "id_user" : 7,
         "id_bank" : 41,
         "last_update" : "2015-07-04 15:17:31"
      }
   ],
   "total" : 1,
}

Background synchronizations & Webhooks

Webhooks are callbacks sent to your server, when an event is triggered during a synchronization. Synchronizations are automatic, the frequency can be set using the configuration key autosync.frequency. Using webhooks allows you to get the most up-to-date data of your users, after each synchronization.

The automatic synchronization makes it possible to recover new bank entries, or new invoices, at a given frequency. You have the possibility to add webhooks on several events, and choose to receive each one on a distinct URL. To see the list of available webhooks you can call the endpoint hereunder:

curl https://demo.biapi.pro/2.0/webhooks_events \
  -H 'Authorization: Bearer <token>'

The background synchronizations for each user are independent, and their plannings are spread over the day so that they do not overload any website.

Once the synchronization of a user is over, a POST request is sent on the callback URL you have defined, including all webhook data. A typical json sent to your server is as below:

POST /callback HTTP/1.1
Host: example.org
Content-Length: 959
Accept-Encoding: gzip, deflate, compress
Accept: */*
User-Agent: Budgea API/2.0
Content-Type: application/json; charset=utf-8
Authorization: Bearer sl/wuqgD2eOo+4Zf9FjvAz3YJgU+JKsJ

{
   "connections" : [
      {
         "accounts" : [
            {
               "balance" : 7481.01,
               "currency" : {
                  "symbol" : "€",
                  "id" : "EUR",
                  "prefix" : false
               },
               "deleted" : null,
               "display" : true,
               "formatted_balance" : "7 481,01 €",
               "iban" : "FR76131048379405300290000016",
               "id" : 17,
               "id_connection" : 7,
               "investments" : [
                  {
                     "code" : "FR0010330902",
                     "description" : "",
                     "diff" : -67.86,
                     "id" : 55,
                     "id_account" : 19,
                     "id_type" : 1,
                     "label" : "Agressor PEA",
                     "portfolio_share" : 0.48,
                     "prev_diff" : 2019.57,
                     "quantity" : 7.338,
                     "type" : {
                        "color" : "AABBCC",
                        "id" : 1,
                        "name" : "Fonds action"
                     },
                     "unitprice" : 488.98,
                     "unitvalue" : 479.73,
                     "valuation" : 3520.28
                  }
               ],
               "last_update" : "2015-07-04 15:17:30",
               "name" : "Compte chèque",
               "number" : "3002900000",
               "transactions" : [
                  {
                     "active" : true,
                     "application_date" : "2015-06-17",
                     "coming" : false,
                     "comment" : null,
                     "commission" : null,
                     "country" : null,
                     "date" : "2015-06-18",
                     "date_scraped" : "2015-07-04 15:17:30",
                     "deleted" : null,
                     "documents_count" : 0,
                     "formatted_value" : "-16,22 €",
                     "id" : 309,
                     "id_account" : 17,
                     "id_category" : 9998,
                     "id_cluster" : null,
                     "last_update" : "2015-07-04 15:17:30",
                     "new" : true,
                     "original_currency" : null,
                     "original_value" : null,
                     "original_wording" : "FACTURE CB HALL'S BEER",
                     "rdate" : "2015-06-17",
                     "simplified_wording" : "HALL'S BEER",
                     "state" : "parsed",
                     "stemmed_wording" : "HALL'S BEER",
                     "type" : "card",
                     "value" : -16.22,
                     "wording" : "HALL'S BEER"
                  }
               ],
               "type" : "checking"
            }
         ],
         "bank" : {
            "id_weboob" : "ing",
            "charged" : true,
            "name" : "ING Direct",
            "id" : 7,
            "hidden" : false
         },
         "error" : null,
         "expire" : null,
         "id" : 7,
         "id_user" : 7,
         "id_bank" : 41,
         "last_update" : "2015-07-04 15:17:31"
      }
   ],
   "total" : 1,
   "user" : {
      "signin" : "2015-07-04 15:17:29",
      "id" : 7,
      "platform" : "sharedAccess"
   }
}

The authentication on the callback is made with the access_token of the user (which is a shared secret between your server and the Budgea API).

When you are in production, it is needed to define a HTTPS URL using a valid certificate, delivered by a recognized authority. If this is not the case, you can contact us to add your CA (Certificate Authority) to our PKI (Public Key Infrastructure).

Important: it is necessary to send back a HTTP 200 code, without what we consider that data is not correctly taken into account on your system, and it will be sent again at the next user synchronization.

Guidelines for production

Now you should have integrated the API inside your application. Make sure your Webhooks URLs are in HTTPS, if so you can enable the production state of the API.

To make things great, here are some good practices, please check you have respected them:

  • You have provided to your users a way to configure their accounts
  • You have provided to your users a way to change their account passwords
  • You consider the error field of Connections, to alert the user in case the state is wrongpass
  • You map IDs of Accounts, Subscriptions, Transactions and Documents in your application, to be sure to correctly match them
  • When the deleted field is set on a bank transaction, you delete it in your database
  • You don't loop on all users to launch synchronizations, this might saturate the service

If you have questions about above points, please contact us. Otherwise, you can put into production!

Going further

If you want to raise the bar for your app and add features such as the ability to do transfers, get invoices, aggregate patrimony and more, please refer to the sections below. We'll discuss complementary APIs building upon the aggregation, allowing for the best of financial apps.

Budgea API Pay

This API allows for the emition of transfers between the aggregated accounts. Just like the simple aggregation, BI provides a webview or a protocol to follow, to implement this feature.

API pay protocol

This section describes how the transfer and recipient protocol work, in case you don't want to integrate the webview. The idea is to do following calls client side (with AJAX in case of a web application), so that the interaction with the Budgea API is transparent.

Executing a transfer

  1. /auth/token/code If you do calls client side, get a new temporary code for the user, from the access_token. This will prevent security issues.
curl -d '' \
  https://demo.biapi.pro/2.0/auth/token/code \
  -H 'Authorization: Bearer <token>'
{
   "code": "/JiDppWgbmc+5ztHIUJtHl0ynYfw682Z",
   "type": "temporary",
   "expires_in": 1800
}

The returned token has a life-time of 30 minutes.

  1. /users/me/accounts?able_to_transfer=1 List all the accounts that can do transfers. Authenticate the call with the code you got at step 1.
curl https://demo.biapi.pro/2.0/users/me/accounts?able_to_transfer=1 \
  -H 'Authorization: Bearer /JiDppWgbmc+5ztHIUJtHl0ynYfw682Z'
{
  "accounts" : [
      {
         "display" : true,
         "balance" : 2893.36,
         "id_type" : 2,
         "number" : "****1572",
         "type" : "checking",
         "deleted" : null,
         "bic" : "BNPAFRPPXXX",
         "bookmarked" : false,
         "coming" : -2702.74,
         "id_user" : 1,
         "original_name" : "Compte de chèques",
         "currency" : {
            "symbol" : "€",
            "id" : "EUR",
            "prefix" : false
         },
         "name" : "lol",
         "iban" : "FR7630004012550000041157244",
         "last_update" : "2016-12-28 12:31:04",
         "id" : 723,
         "formatted_balance" : "2893,36 €",
         "able_to_transfer" : true,
         "id_connection" : 202
      }
   ],
   "total" : 1
}
  1. /users/me/accounts/ID/recipients List all available recipients for a given account.
curl https://demo.biapi.pro/2.0/users/me/accounts/723/recipients?limit=1 \
  -H 'Authorization: Bearer /JiDppWgbmc+5ztHIUJtHl0ynYfw682Z'
{
  "total" : 27,
   "recipients" : [
      {
         "bank_name" : "BNP PARIBAS",
         "bic" : "BNPAFRPPXXX",
         "category" : "Interne",
         "deleted" : null,
         "enabled_at" : "2016-10-31 18:52:53",
         "expire" : null,
         "iban" : "FR7630004012550003027641744",
         "id" : 1,
         "id_account" : 1,
         "id_target_account" : 2,
         "label" : "Livret A",
         "last_update" : "2016-12-05 12:07:24",
         "time_scraped" : "2016-10-31 18:52:54",
         "webid" : "2741588268268091098819849694548441184167285851255682796371"
      }
   ]
}
  1. /users/me/accounts/ID/recipients/ID/transfers Create the transfer
curl \
  https://demo.biapi.pro/2.0/users/me/accounts/1/recipients/1/transfers \
  -H 'Authorization: Bearer /JiDppWgbmc+5ztHIUJtHl0ynYfw682Z' \
  -F amount=10, \
  -F label="Test virement", \
  -F exec_date="2018-09-12" // optional
{
   "account_iban" : "FR7630004012550000041157244",
   "amount" : 10,
   "currency" : {
      "id" : "EUR",
      "prefix" : false,
      "symbol" : "€"
   },
   "exec_date" : "2018-09-12",
   "fees" : null
   "formatted_amount" : "10,00 €",
   "id" : 22,
   "id_account" : 1,,
   "id_recipient" : 1,
   "label" : "Test virement",
   "recipient_iban" : "FR7630004012550003027641744",
   "register_date" : "2018-09-12 10:34:59",
   "state" : "created",
   "webid" : null
}
  1. /users/me/transfers/ID Execute the transfer
curl \
  https://demo.biapi.pro/2.0/users/me/transfers/22 \
  -H 'Authorization: Bearer /JiDppWgbmc+5ztHIUJtHl0ynYfw682Z' \
  -F validated=true
{
   "account_iban" : "FR7630004012550000041157244",
   "amount" : 10,
   "currency" : {
      "id" : "EUR",
      "prefix" : false,
      "symbol" : "€"
   },
   "exec_date" : "2016-12-19",
   "fees" : null,
   "fields" : [
      {
         "label" : "Code secret BNP Paribas",
         "type" : "password",
         "regex" : "^[0-9]{6}$",
         "name" : "password"
      }
   ],
   "formatted_amount" : "10,00 €",
   "id" : 22,
   "id_account" : 1,
   "id_recipient" : 1,
   "label" : "Test virement",
   "recipient_iban" : "FR7630004012550003027641744",
   "register_date" : "2016-12-19 10:34:59",
   "state" : "created",
   "webid" : null
}

Here, an authentication step asks user to enter his bank password. The transfer can be validated with:

curl \
  https://demo.biapi.pro/2.0/users/me/transfers/22 \
  -H 'Authorization: Bearer /JiDppWgbmc+5ztHIUJtHl0ynYfw682Z' \
  -F validated=true \
  -F password="123456"
{
   "account_iban" : "FR7630004012550000041157244",
   "currency" : {
      "id" : "EUR",
      "prefix" : false,
      "symbol" : "€"
   },
   "amount" : 10,
   "exec_date" : "2016-12-19",
   "fees" : 0,
   "formatted_amount" : "10,00 €",
   "id" : 22,
   "id_account" : 1,
   "id_recipient" : 1,
   "label" : "Test virement",
   "recipient_iban" : "FR7630004012550003027641744",
   "register_date" : "2016-12-19 10:34:59",
   "state" : "pending",
   "webid" : "ZZ10C4FKSNP05TK95"
}

The field state is changed to pending, telling that the transfer has been correctly executed on the bank. A connection synchronization is then launched, to find the bank transaction in the movements history. In this case, the transfer state will be changed to done.

Adding a recipient

  1. /auth/token/code Get a temporary token for the user. Same procedure than step 1 for a transfer.

  2. /users/me/accounts?able_to_transfer=1 List accounts allowing transfers. Same procedure than step 2 for a transfer.

  3. /users/me/accounts/ID/recipients/ Add a new recipient.

curl \
  https://demo.biapi.pro/2.0/users/me/accounts/1/recipients \
  -H 'Authorization: Bearer /JiDppWgbmc+5ztHIUJtHl0ynYfw682Z' \
  -F iban=FR7613048379405300290000355 \
  -F label="Papa", \
  -F category="Famille" // optional
{
   "bank_name" : "BNP PARIBAS",
   "bic" : "BNPAFRPPXXX",
   "category" : "Famille",
   "deleted" : null,
   "enabled_at" : null,
   "expire" : "2017-04-29 16:56:20",
   "fields" : [
      {
         "label" : "Veuillez entrer le code reçu par SMS",
         "type" : "password",
         "regex" : "^[0-9]{6}$",
         "name" : "sms"
      }
   ],
   "iban" : "FR7613048379405300290000355",
   "id" : 2,
   "id_account" : 1,
   "id_target_account" : null,
   "label" : "Papa",
   "last_update" : "2017-04-29 16:26:20",
   "time_scraped" : null,
   "webid" : null
}

It is necessary to post on the object Recipient with the requested fields (here sms), until the add is validated:

curl \
  https://demo.biapi.pro/2.0/users/me/accounts/1/recipients/2 \
  -H 'Authorization: Bearer /JiDppWgbmc+5ztHIUJtHl0ynYfw682Z' \
  -F sms="123456"
{
   "bank_name" : "BNP PARIBAS",
   "bic" : "BNPAFRPPXXX",
   "category" : "Famille",
   "deleted" : null,
   "enabled_at" : "2017-05-01 00:00:00",
   "expire" : null,
   "iban" : "FR7613048379405300290000355",
   "id" : 2,
   "id_account" : 1,
   "id_target_account" : null,
   "label" : "Papa",
   "last_update" : "2017-04-29 16:26:20",
   "time_scraped" : null,
   "webid" : "2741588268268091098819849694548441184167285851255682796371"
}

If the field enabled_at is in the future, it means that it isn't possible yet to execute a transfer, as the bank requires to wait a validation period.

API Pay Webview

This section describes how to integrate the webview of the Budgea Pay API inside your application, to let your users do transfers to their recipients.

User redirection

To redirect the user to the webview, it is necessary to build a URI authenticated with a temporary token. This can be done from our library, or by calling the endpoint /auth/token/code (see the protocol section for an example). If the parameter redirect_uri is supplied, the user will be redirected to that page once the transfer is done.

List of pages

Here are a list a pages you may call to redirect your user directly on a page of the process: |Path |Description of the page | |-------------------------------------|----------------------------------------------------------------------------------| |/transfers |List Transfers | |/transfers/accounts |List emitter accounts | |/transfers/accounts/id/recipients |List recipients | |/transfers/accounts/id/recipients/id |Initialization of a transfer between the account and the recipient | |/transfers/id |Detail of a given transfer |

Deprecated

This section lists all the deprecated features in Budgea API. The associated date is the date of its removal. Do not use them.

Key Investments (2019-06-24)

Adding a temporary new key "all_investments" that will include deleted investments in the webhooks.

No automatic expand on User objects (2019-07-30)

In the API responses, by default, User objects won't display the keys "config", "alert_settings" and "invites" anymore. You will still be able to access this data by expanding the request. Example: GET /users/me/?expand=alert_settings,config

Renaming of "type" field for jwt tokens (2019-07-30)

For user's tokens in the jwt format, the "type" field will be renamed from "shared_access" to "sharedAccess".

Actions

account_types.get

Get account types

biapi_pro.account_types.get({}, context)

Input

  • input object
    • expand string

Output

  • output object
    • accounttypes required array
    • total number: total number of results

account_types.id_account_type.get

Get an account type

biapi_pro.account_types.id_account_type.get({
  "id_account_type": 0
}, context)

Input

  • input object
    • id_account_type required integer
    • expand string

Output

admin.jwt.post

This endpoint generates a new jwt manage token. It requires an admin manage token to be used

biapi_pro.admin.jwt.post({}, context)

Input

  • input object
    • duration integer: number of minute before the token expiration (0 for token that won't expire unless the client application is deleted) (default: 1)
    • scope string: scope requested for the token (default: config)

Output

  • output object

auth.init.post

This endpoint creates a new temporary token related to a new anonymous user.It will expire 30 minutes after.Note: if you supply client_id and client_secret, or if you call this endpoint with the manage_token, the token will be permanent.

biapi_pro.auth.init.post({}, context)

Input

  • input object
    • client_id string: ID of the client
    • client_secret string: secret of the client

Output

  • output object
    • auth_token required string: new token created for the new anonymous user
    • expires_in integer: duration in seconds of the token validity
    • type required string: type of the token

auth.jwt.post

This endpoint generates a new jwt token for the user. This token will last the time in minutes given by the config key auth.default_token_expire (permanent if this the parameter expire=False is given)

biapi_pro.auth.jwt.post({}, context)

Input

  • input object
    • client_id string: id of the client
    • client_secret string: secret for the client
    • expire boolean: if set to True, the token will expire n minutes after its creation, n being the value of configuration key auth.default_token_expire (default: True)
    • id_user integer: user for whom the token has to be generated. If not supplied, a user will be created
    • scope string: scope requested for the token

Output

  • output object
    • jwt_token required string: the jwt token
    • payload required object: the payload contained in the jwt token

auth.renew.post

Get a new access token given an user id and client credentials

biapi_pro.auth.renew.post({
  "client_id": "",
  "client_secret": "",
  "id_user": 0
}, context)

Input

  • input object
    • client_id required string: ID of the client
    • client_secret required string: secret of the client
    • grant_type string: default is "client_credentials"
    • id_user required integer: id of the user to generate a token for
    • revoke_previous boolean: if true, all other permanent tokens for the user will be deleted

Output

  • output object
    • access_token required string: the access token transformed from the temporary one
    • token_type required string: the access token type

auth.token.delete

This endpoint removes the token in use.

biapi_pro.auth.token.delete(null, context)

Input

This action has no parameters

Output

Output schema unknown

auth.token.post

Request a new user token by giving an username and a password. Or a manage payment token by giving a client

biapi_pro.auth.token.post({
  "application": "",
  "password": "",
  "username": ""
}, context)

Input

  • input object
    • application required string: application name
    • grant_type string: password when requesting a user token and client_credentials for a payment manage token (default: password)
    • password required string: password
    • scope string: scope requested for the token
    • username required string: username

Output

  • output object
    • expires_in integer: duration in seconds of the token validity
    • scope required string: the token scope
    • token required string: the requested token

auth.token.access.post

In order to register a new user with the OAuth 2 process, the client has to call this endpoint to request a granted access_token with the received temporary code.

biapi_pro.auth.token.access.post({
  "client_id": "",
  "client_secret": "",
  "code": ""
}, context)

Input

  • input object
    • client_id required string: ID of the client
    • client_secret required string: secret of the client
    • code required string: user's temporary code
    • grant_type string: default is "authorization_code"
    • redirect_uri string: redirect uri used by user

Output

  • output object
    • access_token required string: the access token transformed from the temporary one
    • token_type required string: the access token type

auth.token.code.get

This endpoint generates a new temporary token for the user.In case the access_token is used by a trusted device, and you want to let another one (for example a web browser) access to user resources, use this service to create a token which will expire in 30 minutes.Additionally, you can also generate a temporary single-use token by specifying 'type=singleAccess' as query parameter. A single-use token can only be used once no matter the endpoint being accessed.

biapi_pro.auth.token.code.get(null, context)

Input

This action has no parameters

Output

  • output object
    • access required string: the reusability of a token (standard or single use)
    • code required string: the temporary token
    • expires_in required integer: duration in seconds of the token validity
    • type required object: the token type

banks.get

Get list of connectors

biapi_pro.banks.get({}, context)

Input

  • input object
    • expand string

Output

  • output object
    • banks required array
    • total number: total number of results

banks.categories.post

It requires the name of the category to be created

biapi_pro.banks.categories.post({
  "name": ""
}, context)

Input

  • input object
    • expand string
    • name required string: name of the category to be created

Output

banks.categories.id_category.delete

Delete the supplied category

biapi_pro.banks.categories.id_category.delete({
  "id_category": 0
}, context)

Input

  • input object
    • id_category required integer
    • expand string

Output

banks.categories.id_category.post

Edit the name for the supplied category.

biapi_