Links

Connectors

Connectors represent business institutions that Powens can establish connections with, in order to extract data.

API endpoints

Authentication: endpoints listed in this page do not require authentication.

Connectors

get
https://{domain}.biapi.pro/2.0
/connectors
List connectors
Deprecated route aliases:
/banks
/providers
get
https://{domain}.biapi.pro/2.0
/connectors/{connectorUuid}
Get a connector
put
https://{domain}.biapi.pro/2.0
/connectors/{connectorUuid}
Update a connector
patch
https://{domain}.biapi.pro/2.0
/connectors
Batch enable/disable connectors
put
https://{domain}.biapi.pro/2.0
/connectors/{connectorIds}
Batch enable/disable connectors (deprecated)

Connector sources

get
https://{domain}.biapi.pro/2.0
/connectors/{connectorUuid}/sources
List connector sources
get
https://{domain}.biapi.pro/2.0
/connectors/{connectorUuid}/sources/{sourceId}
Get a connector source
put
https://{domain}.biapi.pro/2.0
/connectors/{connectorUuid}/sources/{sourceId}
Update a connector source

Data model

ConnectorsList object

Property
Type
Description
connectors
Array of Connector objects
The list of connectors. The key is absent on deprecated endpoint routes.
banks
Array of Connector objects
(Deprecated) The list of connectors. The key is only present on deprecated endpoint routes.

Connector object

Property
Type
Description
id
Integer
ID of the connector, not stable across API domains.
uuid
String
Unique connector identifier, stable across API domains.
name
String
Name of the bank or provide.
hidden
Boolean or null
Whether this connector is hidden from users.
charged
Boolean
Usage of this connector is charged.
code
String or null
Bank code.
beta
Boolean
If true, this connector is likely instable.
color
String or null
Branding color of the bank or provider.
slug
String or null
A short letter code to identify the connector. Slugs are not unique.
sync_frequency
Decimal or null
How many days to wait between syncs.
months_to_fetch
Integer or null
Number of months of history to fetch when synchronizing a connection.
auth_mechanism
AuthMechanism string or null
Authentication mechanism to use to add a connection.
available_auth_mechanisms
Array of AuthMechanism strings
The list of available mechanisms to add a connection (internal use only).
transfer_mechanism
AuthMechanism or null
Authentication mechanism to use to validate a transfer.
siret
String
SIRET code, for providers.
restricted
Boolean
If true, new connections cannot be added with this connector.
capabilities
Array of strings
The list of capabilities implemented on the connector. E.g. profile means that the connector is able to return identity information.
account_usages
Array of BankAccountUsage strings
The list of account usages returned by the sources of the connector.
payment_settings
PaymentSettings object
An object providing information about payment feature on this connector. Only present if Pay product is enabled on the connector.
products
Array of Product strings
The list of products implemented on the connector. (e.g. pay means that the connector has Pay product).

Available expands

The following parameters can be used for response properties expansion:
Property
Type
Description
sources
Array of ConnectorSource objects
The details of the sources available for the connector.
fields
Array of ConnectorField objects
The list of initial form fields associated with the connector. Only relevant when building a custom connection integration.
countries
Array of ConnectorCountry objects
Countries where users can open or have accounts/subscriptions with the given institution.

AuthMechanism values

Value
Description
credentials
Connections will use a set of fields to save user credentials.
webauth
Connections will use a web-based flow to obtain access.
Forward compatibility requirement: additional mechanisms may be added in the future. When implementing mechanism handling, always safely handle unsupported values.

ConnectorField object

Name
Type
Description
name
String
The technical name of the field, used as a key when sending the values for the field.
connector_sources
Array of strings
The list of connector source names for which the field is relevant. Fields should be presented sequentially according to the source being added. The value can differ with the auth_mechanism preferentially used.
auth_mechanisms
Array of AuthMechanism strings
The list of mechanisms for which the field is relevant. Fields should be presented sequentially according to the source being added.
type
Type of the field, to be used to present an appropriate UI form field to the end-user. Implementations should ignore unsupported types and fallback to a text field.
label
String
A short display label for the field.
description
String or null
An optional longer text with instructions relative to the field, obtained from the connector.
required
Boolean
If true, the parameter is required, with a non-empty value, when creating a connection.
regex
String or null
An optional regular expression (PCRE-compatible) that the field value must validate.
values
Array of objects
For list fields, a closed list of fixed values to chose from. Entries are composed of label (string, display value of the field) and value (string, the actual value to send for the field).

ConnectorFieldType values

Value
Description
text
A simple text field.
password
A simple text field for a sensitive value. Implementations should provide secure typing for such fields.
date
A date field. Input should be proposed in a user-friendly manner with a picker or a localized text input, but the value must be submitted as an ISO 8601 date string (yyyy-mm-dd).
list
A field whose value must be chosen in a closed list of values. The field can be presented with a dropdown or a similar control.

ConnectorCountry object

Name
Type
Description
id
String
The country ISO 3166‑1 alpha‑2 code.
name
String
The country name.

PaymentSettings object

Name
Type
Description
available_validate_mechanisms
Array of strings
The list of payment validation mechanisms supported by this connector. As of Sept. 2022, the only supported mechanism is webauth.
beneficiary_types
Array of PaymentAccountSchemeName strings
The list of supported payment beneficiary types for this connector.
execution_date_types
Array of ExecutionDate strings
The list of supported payment types.
execution_frequencies
Array of ExecutionFrequency strings
The list of supported periodic payment frequencies.
maximum_number_of_instructions
Integer
The maximum number of individual instructions for one payment. If 1, the connector does not support bulk payments.
providing_payer_account
Indicates if the connector needs the payer account identification in order to initiate a payment with their bank.
partial_status_tracking
Array of ExecutionDate strings
Indicates for which payment date types a payment can reach the final state accepted for this connector, meaning the bank does not provide us with the full tracking of the payment status. An empty list indicates that payments will never get the state accepted on this connector.

ProvidingPayerAccount values

Value
Description
not_used
The payer account is not necessary and must not be given.
optional
The payer account is optional. Providing the account may have an impact on the bank's webview (e.g. the payment account may be preselected for the user, or the user may not have the possibility to change it for another one).
mandatory
The payer account must be provided. The bank does not allow a payment initiation without this information.

Product values

Value
Description
bank
Bank product.
wealth
Wealth product.
bill
Bill product.
pay
Pay product.

ConnectorUpdateRequest object

Name
Type
Required
Description
hidden
Boolean
No
Whether the connector is hidden from users.
sync_frequency
Decimal
No
Overload global sync_frequency param

ConnectorSourcesList object

Property
Type
Description
sources
Array of ConnectorSource objects
List of connector sources.

ConnectorSource object

Property
Type
Description
id
Integer
ID of the connector source.
id_connector
Integer
ID of the related connector.
name
String
Name of the connector source.
auth_mechanism
AuthMechanism string or null
Authentication mechanism to use to add a connection source.
available_auth_mechanisms
Array of AuthMechanism strings
The list of available mechanisms to add a connection source.
disabled
DateTime or null
If set, this source is ignored on synchronizing the connection.
priority
Integer
The source priority order for the synchronization. Sources must be added following priority order.
account_usages
Array of BankAccountUsage strings
The list of account usages returned by the source.

ConnectorSourceUpdateRequest object

Property
Type
Required
Description
auth_mechanism
AuthMechanism string
No
The authentication mechanism to use for this connector source.
disabled
DateTime or null
No
If set, this source is ignored on synchronizing the connection.