Ledger balances
View balance monitor details
Get one balance monitor with the Python SDK.
GET
View balance monitor details
Use
blnk.balance_monitor.get to retrieve a balance monitor by ID.
Use the monitor details
Read
response.data for the threshold condition, webhook URL, and linked balance_id.Response
200 OK
| Field | Type | Description |
|---|---|---|
monitor_id | str | Unique ID for the monitor. |
balance_id | str | Balance being monitored. |
condition | dict | Threshold rule for the monitor. |
condition.field | str | Balance field to watch (for example credit_balance, debit_balance, balance). |
condition.operator | str | Comparison operator: >, <, =, !=, >=, <=. |
condition.value | number | Threshold amount. |
condition.precision | number | Currency precision (for example 100 for cents). |
call_back_url | str | Webhook URL for notifications. |
description | str | Description for the monitor. |
created_at | str | Date and time when the monitor was created. |
Related docs
Balance monitoring
Conditions and webhook behavior.
View balance monitor details
HTTP request and response schema.