Exposed resources

Entities returned by the Bridge API

The Bridge API exposes a core set of entities:

  • Users belong to your application (App). The User entity is an abstraction of an end-user. The User is identified by its uuid and should be linked in your backend to your abstraction of a User / Client.
    See the User resource.

  • Items belong to a User. The Item entity is the abstraction of the connection of the end-user to a Bank.
    See the Item resource.

  • Accounts belong to an Item. The Account entity represents a real life account (e.g., a Checking Account).
    See the Account resource.

  • Transactions belong to an Account. The Transaction entity represents a real life transaction.
    See the Transaction resource.

602