Check

Check lets you confirm the ownership of a bank account, account number, IBAN and type of account complying with the revised Payment Service Directive (PSD2).

Check data

The Check product exposes account ownerships.

Check account

We provide a view of the bank account of a user with /account_ownerships endpoint:

GET /users/me/account_ownerships
GET /users/me/connections/{connectionId}/account_ownerships
{
  "account_ownerships": [
    {
      "id_account": 12345,
      "id_connection": 1234,
      "id_user": 123,
      "id_connector_source": 1234,
      "name": "Compte de dépôt",
      "usage": "PRIV",
      "parties": [
        {
          "role": "holder",
          "identity": {
            "is_user": true,
            "full_name": "DOE John"
          }
        },
        ...
      ],
      "identifications": [
        {
          "scheme_name": "iban",
          "identification": "FR1221954549412158521"
        },
        ...
      ]
    }
  ],
  "total": 1
}

Check account is linked to a connection (they are deleted with the connection).

Last updated