Get a low balance alert for a customer account

🚧 Coming soon


Use GET {URI}/customers/{customerIdentifier}/accounts/{accountIdentifier}/lowbalance/{balanceAlertID} to retrieve the details of a specific low balance alert. This is useful for viewing the current configuration of an alert, such as the threshold amount, notification settings, and status.

Use case

The finance team at Acme Wellness wants to review the configuration of a specific low balance alert for an employee’s account. This includes checking the current threshold amount, notification channels, and alert status to ensure it aligns with updated company policies. They use the following endpoint to retrieve the alert details:

EndpointPurpose
GET {URI}/customers/{customerIdentifier}/accounts/{accountIdentifier}/lowbalance/{balanceAlertID}Update a low balance alert for a specific Account under a Customer.

The following parameters are part of your URL path for this API request:

Path paramData typeRequirementDescription
customerIdentifierstringrequiredThe customerIdentifier for the Customer / Account combination under which you update the low balance alert.
accountIdentifierstringrequiredThe accountIdentifier for the Customer / Account combination under which you update the low balance alert.
balanceAlertIDuuidrequiredThe lowBalanceIdentifier for the Customer / Account / low balance combination under which you update the low balance alert.

Here is an example of the returned payload:

{
  "createdAt": "2025-07-15T17:00:04.933Z",
  "balanceAlertID": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
  "customerIdentifier": "string",
  "accountIdentifier": "string",
  "balanceAlertDisplayName": "string",
  "balanceAlertThreshold": 0,
  "balanceAlertNotification": [
    {
      "emailAddress": "string"
    }
  ]
}

The possible response codes for this endpoint are as follows. For details, see i18nkey codes and their error messages:

Response codeMeaning
200The request was successful.
400The server could not understand the request due to invalid syntax.
401Authentication is required and has either not been provided or failed.
403The server understood the request but refuses to authorize it.
404The server could not find the requested resource. In other words, the URL you’re trying to access doesn’t point to anything that exists on the server.
500Something went wrong on the server, but the server cannot be more specific about what the exact problem is.

© 2025 Tango API are provided by Tango, a division of BHN, Inc.