Getting Started
Ledger Balances
Transactions
Identities
Get Balance Monitor
GET
/
balance-monitors
/
{id}
Copy
curl --request GET \
--url http://localhost:5001/balance-monitors/{id}
Copy
{
"monitor_id": "mon_e0e77b0c-4985-472a-9bf5-76a48b0259b0",
"balance_id": "bln_0be360ca-86fe-457d-be43-daa3f966d8f0",
"condition": {
"field": "debit_balance",
"operator": ">",
"value": 100000
},
"description": "",
"call_back_url": "https://api.myapp.com/balancemonitor",
"created_at": "2024-02-20T05:56:58.257315Z"
}
Path Parameters
Example:
"mon_e0e77b0c-4985-472a-9bf5-76a48b0259b0"
Response
200 - application/json; charset=utf-8
OK
The response is of type object
.
Was this page helpful?
Copy
curl --request GET \
--url http://localhost:5001/balance-monitors/{id}
Copy
{
"monitor_id": "mon_e0e77b0c-4985-472a-9bf5-76a48b0259b0",
"balance_id": "bln_0be360ca-86fe-457d-be43-daa3f966d8f0",
"condition": {
"field": "debit_balance",
"operator": ">",
"value": 100000
},
"description": "",
"call_back_url": "https://api.myapp.com/balancemonitor",
"created_at": "2024-02-20T05:56:58.257315Z"
}
Assistant
Responses are generated using AI and may contain mistakes.