Powens Documentation
DocumentationChangelogConsoleWebsite
  • Documentation
  • Integration guides
    • Quick Start
      • API Overview
      • Add a first user and connection
    • ➖Bank
      • Introduction to Bank
      • Bank integration guide
    • ➖Check
    • ➖Wealth
    • ➖Pay
      • Getting started with Pay
      • Initiating a one-time payment with the Webview
      • Initiating a bulk payment with the Webview
      • Initiating a recurring payment with the Webview
      • Cancelling a payment
      • Validating your implementation with the test connector
      • Advanced
        • Listing connectors with Pay enabled programmatically
        • Implementing your own payment validation webview
        • Confirming payments manually
        • Changing the manual expiration time
        • Changing the maximum amounts for payments
    • ➖Trust
    • ➖Advisory (obsolete)
    • ➖Indicators
    • SCA & connection states
    • Webhooks
    • Advanced
      • Custom connection implementation
      • End-to-end encryption
      • Response signature
  • SDK
    • Connect SDK
    • Powens Connect iOS
  • Reference
    • API Reference
    • Console & Webview documentation
  • Ressources
    • Tools
      • Institutions & capabilities
      • Demo integration
      • Demo product
    • Glossary
  • Changelog
  • Legal notice
Powered by GitBook
On this page

Was this helpful?

  1. Integration guides

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).

PreviousBank integration guideNextWealth

Last updated 6 months ago

Was this helpful?

Check data

The Check product exposes account ownerships.

Check account

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",
      "bank_name": "Bank",
      "multiple_holders": "null",
      "calculated": [],
      "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).

We provide a view of the bank account of a user with :

➖
/account_ownerships endpoint