Solicitud
curl --location --request GET 'https://apipp.conekta.io/balance' \
--header 'Accept: application/vnd.conekta-v2.0.0+json' \
--header 'Content-Type: application/json; charset=utf-8' \
-u key_xxxxxxxxxxxxxx:
Respuesta
{
"available": [
{
"amount": 8836547, // Integer: amount available
"currency": "MXN" // String: currency of the amount available
}
],
"pending": [
{
"amount": 5299, // Integer: amount pending
"currency": "MXN" // String: currency of the amount pending
}
],
"retention_amount": [
{
"amount": 100000, // Integer: retention amount
"currency": "MXN" // String: currency of the retention amount
}
],
}