Retrieves the balance transaction with the given ID.
curl https://api.stripe.com/v1/balance/history/txn_1BnETJGswQrCoh0XxO2tGYr7 \
-u STRIPE_SECRET_KEY:
import com.chilkatsoft.*;
public class ChilkatExample {
static {
try {
System.loadLibrary("chilkat");
} catch (UnsatisfiedLinkError e) {
System.err.println("Native code library failed to load.\n" + e);
System.exit(1);
}
}
public static void main(String argv[])
{
CkRest rest = new CkRest();
boolean success;
// URL: https://api.stripe.com/v1/balance/history/txn_1BnETJGswQrCoh0XxO2tGYr7
boolean bTls = true;
int port = 443;
boolean bAutoReconnect = true;
success = rest.Connect("api.stripe.com",port,bTls,bAutoReconnect);
if (success != true) {
System.out.println("ConnectFailReason: " + rest.get_ConnectFailReason());
System.out.println(rest.lastErrorText());
return;
}
rest.SetAuthBasic("STRIPE_SECRET_KEY","");
CkStringBuilder sbResponseBody = new CkStringBuilder();
success = rest.FullRequestNoBodySb("GET","/v1/balance/history/txn_1BnETJGswQrCoh0XxO2tGYr7",sbResponseBody);
if (success != true) {
System.out.println(rest.lastErrorText());
return;
}
CkJsonObject jsonResponse = new CkJsonObject();
jsonResponse.LoadSb(sbResponseBody);
String id;
String object;
int amount;
int available_on;
int created;
String currency;
boolean description;
boolean exchange_rate;
int fee;
int net;
String source;
String status;
String type;
int i;
int count_i;
id = jsonResponse.stringOf("id");
object = jsonResponse.stringOf("object");
amount = jsonResponse.IntOf("amount");
available_on = jsonResponse.IntOf("available_on");
created = jsonResponse.IntOf("created");
currency = jsonResponse.stringOf("currency");
description = jsonResponse.IsNullOf("description");
exchange_rate = jsonResponse.IsNullOf("exchange_rate");
fee = jsonResponse.IntOf("fee");
net = jsonResponse.IntOf("net");
source = jsonResponse.stringOf("source");
status = jsonResponse.stringOf("status");
type = jsonResponse.stringOf("type");
i = 0;
count_i = jsonResponse.SizeOfArray("fee_details");
while (i < count_i) {
jsonResponse.put_I(i);
i = i+1;
}
}
}
{
"id": "txn_1BnETJGswQrCoh0XxO2tGYr7",
"object": "balance_transaction",
"amount": 100,
"available_on": 1516662781,
"created": 1516662781,
"currency": "usd",
"description": null,
"exchange_rate": null,
"fee": 0,
"fee_details": [
],
"net": 100,
"source": "ch_1BnETJGswQrCoh0XTs0EERBj",
"status": "pending",
"type": "charge"
}