Virtual IBAN balance reporting
Last updated
Was this helpful?
All customers subscribed to virtual IBANs product must report an actual balance of vIBAN on demand. To automate such queries customers must provide an API endpoint that will be called by GuruPay systems.
GuruPay system will issue a GET HTTP request to provided URL. Authorization header will be sent with customer generated API token.
Endpoint is expected to return vIBAN balance as an integer in cents.
GET https://<balance-reporting-url>/:iban
Headers
Content-Type
application/json
Authorization
Bearer <token>
Path parameters
iban
string
vIBAN. e.g. LT0034001
Response
{
"balance": 5500
}{
"error": "Invalid request"
}Last updated
Was this helpful?
Was this helpful?
