Here you will find additional options to the base flow that you can implement according to your needs.
This service allows you to check the total available balance in the merchant's account.
First, make a request to the following endpoint:
METHOD: GET
[URL_PAYOUTS]/v1/payouts/cl/balance?merchant_code=[merchant_code]
<aside> <img src="/icons/light-bulb_gray.svg" alt="/icons/light-bulb_gray.svg" width="40px" />
Important: Remember to enter your merchant_code as a parameter, example: https://example-api.com/v1/payouts/cl/balance?merchant_code=cl_merchant
</aside>
HEADERS
{
"Authorization": "eyJr[.....]M2My1h..."
}
<aside> <img src="/icons/light-bulb_gray.svg" alt="/icons/light-bulb_gray.svg" width="40px" />
Important: Remember to add the authorization header with the token obtained in the Login step.
</aside>
SUCCESSFUL RESPONSE
{
"code": "S_OK",
"resume": {
"balance": 99898389
}
}