Get Account Dashboard

Use the Get Account Dashboard API endpoint to retrieve a consolidated view of account balances, limits, and status for a customer's line of credit account.

📘

Early Access

Credit API endpoints are currently being finalised as part of ongoing product development. While we do not anticipate significant changes, some interfaces, behaviours, and documentation may be refined before general availability.

The Get Account Dashboard endpoint enables you to retrieve a consolidated view of account balances, limits, and status for a customer's line of credit account. This forms the primary data source for building account dashboard experiences within your own user interface.

📘

More Information

For more information about the Explorer endpoints, see: Credit Explorer.

Example Request

Retrieve account dashboard information by making a GET request to the Get Account Dashboard endpoint.

GET {{baseUrl}}/api/v1/credit/explorer/accounts/{account_id}/dashboard

Path Parameters

ParameterDescription
account_idstring. Required. The unique identifier of the account.

Example Response

A successful request returns a 200 HTTP status code with the account dashboard information.

{
  "uuid": "12345",
  "customerId": "67890",
  "clientAssignedId": "client_acc_001",
  "clientAssignedCustomerId": "client_cust_001",
  "productId": "1",
  "productDescription": "Standard Credit Card",
  "accountStatus": "ACTIVE",
  "assetCurrency": "USD",
  "creditLimit": "5000.00",
  "balance": "1200.00",
  "pendingBalance": "50.00",
  "availableCredit": "3750.00",
  "totalDue": "1200.00",
  "minimumDue": "25.00",
  "dueDate": "2025-02-15",
  "amountPastDue": "0.00",
  "amountOverLimit": "0.00",
  "daysPastDue": "0",
  "nextStatementDate": "2025-02-01",
  "bucketsInfo": [
    {
      "name": "Purchases",
      "balance": "1000.00",
      "availableCredit": "4000.00",
      "interestRate": "19.99",
      "creditLimit": "5000.00"
    },
    {
      "name": "Cash Advances",
      "balance": "200.00",
      "availableCredit": "800.00",
      "interestRate": "24.99",
      "creditLimit": "1000.00"
    }
  ]
}

Response Fields

Account Object

AttributeDescription
uuidstring or null. The internal identifier of the account.
customerIdstring or null. The internal identifier of the customer associated with the account.
clientAssignedIdstring or null. The identifier assigned to the line of credit account in the loan management system.
clientAssignedCustomerIdstring or null. The identifier assigned to the customer in the loan management system.
productIdstring or null. The identifier of the credit product associated with the account.
productDescriptionstring or null. A description of the credit product associated with the account.
accountStatusstring or null. The current status of the account.
assetCurrencystring. The currency of the account. Default is USD.
creditLimitstring. The total credit limit of the account.
balancestring. The current balance of the account.
pendingBalancestring. The pending balance of the account, including transactions that have not yet settled.
availableCreditstring. The amount of credit currently available for purchases.
totalDuestring. The total amount due on the account.
minimumDuestring. The minimum payment amount due.
dueDatestring or null. The date by which the minimum payment must be made.
amountPastDuestring. The amount that is past due on the account.
amountOverLimitstring. The amount by which the account balance exceeds the credit limit.
daysPastDuestring or null. The number of days the account is past due.
nextStatementDatestring or null. The date on which the next billing statement will be generated.
bucketsInfoarray. A list of credit buckets associated with the account. See Bucket Object.
📘

Note

Cash advance balance, available credit, and limit are reported per bucket rather than as separate top-level fields — see the Cash Advances entry in bucketsInfo below.

Bucket Object

AttributeDescription
namestring. The name of the credit bucket. Possible values: Purchases, Cash Advances.
balancestring. The current balance of the bucket.
availableCreditstring. The amount of credit available in the bucket.
interestRatestring. The interest rate applied to the bucket.
creditLimitstring. The credit limit of the bucket.


Did this page help you?