Bank Account

Fetch User's Accounts

Get User's Account

GET https://wimikabankservice.azurewebsites.net/api/BankAccount

This endpoint retrieves all bank accounts associated with a user. It provides a comprehensive view of the user's financial accounts, including checking accounts and savings accounts.

Headers

Name
Type
Description

x-wimika-session-id*

String

Wimika session unique Identifier.

The API request returns detailed information about each bank account, such as the account identifer, account number and account type.

[
  {
    "id": 0,
    "number": null,
    "type": null
  },
  {
    "id": 0,
    "number": null,
    "type": null
  }
]

Example Request

Fetch user accounts
curl \
    -H 'Accept: application/JSON' \
    -H 'x-wimika-session-id: 08303832' \
-X GET https://wimikabankservice.azurewebsites.net/api/BankAccount

Get User's Account by ID

Get User's Details using Account Unique Identifier

GET https://wimikabankservice.azurewebsites.net/api/BankAcccount/{id}

The endpoint fetches a user's bank account by utilizing the associated user account's ID.

Path Parameters

Name
Type
Description

id*

Integer

The identifier for the user's bank account.

Headers

Name
Type
Description

x-wimika-session-id*

String

Wimika session unique Identifier.

The API request returns detailed information about the requested bank account, such as the account identifer, account number and account type.

{
  "id": 109234,
  "number": "ACCT-CHK-109234",
  "type": "Checking"
}

Example Request

Fetch user account with ID
curl \
    -H 'Accept: application/JSON' \
    -H 'x-wimika-session-id: 08303832' \
-X GET https://wimikabankservice.azurewebsites.net/api/BankAccount/21393

Last updated

Was this helpful?