Conected Account

This API is called using the bank customer’s credentials and retrieves a list of the customer's requests to connect to remote (external) accounts.

Response:
The response is an array of connection requests, where each object contains detailed information about the linked account request.

[
  {
    "id": 0,  // Unique identifier of the connection request.
    "nickName": "string",  // Username of the remote account.
    "firstName": "string",  // First name of the remote account holder.
    "lastName": "string",  // Last name of the remote account holder.
    "dba": "string",  // "Doing Business As" name (relevant only for Business and Sub accounts).
    "type": 1,  // Type of the account for which the request was made: 
                // 1 - Consumer Account,
                // 2 - Business Primary Account,
                // 4 - Business Sub Account.
    "status": "string",  // Status of the request: 
                         // "APPROVED" - The account holder has confirmed the request (the bank can now connect),
                         // "PENDING" - The request is awaiting confirmation.
    "created": "2024-09-12T09:48:50.532Z"  // Timestamp when the request was created.
  },
  {
    "id": 2,
    // More requests...
  }
]
Language
Credentials
Bearer
JWT
Click Try It! to start a request and see the response here!