Get balance
This endpoint will return your current account balance in Rupiah (IDR).
GET https://us-central1-appgregator.cloudfunctions.net/flipSandbox/general/balance/
Query Parameters
Name
Type
Description
name*
String
ft-4
connection_name*
String
flip-entre-1
Headers
Name
Type
Description
x-api-key*
String
U2Fsd...
{
    "balance": 949999972000
}curl --location --request GET 'https://us-central1-appgregator.cloudfunctions.net/flipSandbox/general/balance?name=ft-4&connection_name=flip-entre-1' \
--header 'x-api-key: U2Fsd...'var axios = require('axios');
var config = {
  method: 'get',
  url: 'https://us-central1-appgregator.cloudfunctions.net/flipSandbox/general/balance?name=ft-4&connection_name=flip-entre-1',
  headers: { 
    'x-api-key': 'U2Fsd...'
  }
};
axios(config)
.then(function (response) {
  console.log(JSON.stringify(response.data));
})
.catch(function (error) {
  console.log(error);
});<?php
$curl = curl_init();
curl_setopt_array($curl, array(
  CURLOPT_URL => 'https://us-central1-appgregator.cloudfunctions.net/flipSandbox/general/balance?name=ft-4&connection_name=flip-entre-1',
  CURLOPT_RETURNTRANSFER => true,
  CURLOPT_ENCODING => '',
  CURLOPT_MAXREDIRS => 10,
  CURLOPT_TIMEOUT => 0,
  CURLOPT_FOLLOWLOCATION => true,
  CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
  CURLOPT_CUSTOMREQUEST => 'GET',
  CURLOPT_HTTPHEADER => array(
    'x-api-key: U2Fsd...'
  ),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
Last updated