Retrieve a Financial Account

Retrieve details for a Financial Account. Use the embed query parameter to request the Financial Account balances.

Endpoint

GET /v1/financial-accounts/{financialAccountId}

Authorization Header

Authorization: Bearer <access_token>

Path Parameters

financialAccountId  REQUIRED

string (UUID)

ID of the Financial Account.

Query Parameters

embed

string enum, value: balances

Specify subresources to embed in the response. The subresources are returned in the _embedded object. The following subresources can be requested:

  • balances  Balances for the Financial Account.

Request Body

None

Returns

Returns the Financial Account details. One of the following objects is returned:

If the balances subresource was requested, the _embedded object contains the Financial Account Balances object.

SAMPLE RESPONSE

				
					{
  "id": "8th32z87-3845-9810-v7gu-1f827g98swk3",
  "businessAccountId": "a1d8b427-d2b2-4711-bc10-f515366bb8d6",
  "name": "Checking",
  "category": "EXTERNAL",
  "type": "BANK",
  "subtype": "CHECKING",
  "defaultFlag": true,
  "currency": "USD",
  "accountHolderId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
  "accountHolderType": "CUSTOMER",
  "state": "ACTIVE",
  "maskedAccountNumber": "******6790",
  "createdBy": {
    "id": "59dff46b-03d3-449b-89bf-b8010770864f",
    "type": "employee"
  },
  "createdAt": "2024-09-20T22:09:31.947Z",
  "updatedBy": {
    "id": "59dff46b-03d3-449b-89bf-b8010770864f",
    "type": "employee"
  },
  "updatedAt": "2024-10-20T22:09:31.947Z",
  "bankAccount": {
    "bankName": "Citibank",
    "routingNo": "321171184",
    "accountNumberTail": "4523",
    "nameOnAccount": "Mark Strong",
    "billingAddress": {
      "addressLine1": "625 Queen St",
      "addressLine2": "Suite 201",
      "addressLine3": "South Building",
      "city": "Vancouver",
      "stateCode": "BC",
      "countryCode": "CAN",
      "postalCode": "V5K 0A1"
    }
  },
  "_embedded": {
    "balances": {
      "USD": {
        "accountBalance": "1000.00",
        "availableBalance": "800.00",
        "pendingWithdrawals": "200.00",
        "pendingDeposits": "300.00"
      }
      "CAD": {
        "accountBalance": "700.00",
        "availableBalance": "600.00",
        "pendingWithdrawals": "100.00",
        "pendingDeposits": "900.00"
      }
    }
  }
}
				
			
Exit mobile version