curl --request GET \
--url https://api.clickpesa.com/third-parties/account/balance \
--header 'Authorization: Bearer <token>'[
{
"currency": "TZS",
"balance": 123
}
]Get Account Balance
curl --request GET \
--url https://api.clickpesa.com/third-parties/account/balance \
--header 'Authorization: Bearer <token>'[
{
"currency": "TZS",
"balance": 123
}
]Authorization header containing the JWT access token returned from the generate token endpoint. The token already includes the Bearer prefix. Example: Authorization: Bearer eyJhbGciOi...