{
"id": "po_1A7hu3DwfKwfo61JzgecM__________", "object": "transfer",
"amount": 203321,
"arrival_date": 1492041600,
"balance_transaction": "txn_1A7hu3DwfKwfo_________",
"created": 1491989803,
"currency": "usd",
"description": "STRIPE TRANSFER",
"destination": "ba_18tQfrDwfKwf_________",
"failure_balance_transaction": null,
"failure_code": null,
"failure_message": null,
"livemode": true,
"metadata": {},
"method": "standard",
"source_type": "card",
"statement_descriptor": null,
"status": "paid",
"type": "bank_account",
"date": 1492041600,
"transfer_group": null,
"recipient": null,
"bank_account": {
"id": "ba_18tQfrDwfKwfo6___________",
"object": "bank_account",
"account_holder_name": null,
"account_holder_type": null,
"bank_name": "__________ _____ CREDIT UNION",
"country": "US",
"currency": "usd",
"fingerprint": "dI90A5W2Cb______",
"last4": "_____",
"routing_number": "__________",
"status": "new"
},
"amount_reversed": 0,
"reversed": false,
"reversals": {
"object": "list",
"data": [],
"has_more": false,
"total_count": 0,
"url": "/v1/transfers/po_1A7hu3DwfKwfo6______/reversals"
},
"application_fee": null,
"source_transaction": null
}
And then here is the item returned when looking at individual BALANCE HISTORY:
{
"id": "txn_1A7hu3DwfKwfo61JzgecM___",
"object": "balance_transaction",
"amount": -203321,
"available_on": 1492041600,
"created": 1491989803,
"currency": "usd",
"description": "STRIPE TRANSFER",
"fee": 0,
"fee_details": [],
"net": -203321,
"source": "po_1A7hu3DwfKwfo61JLm0q9___",
"sourced_transfers": {
"object": "list",
"data": [],
"has_more": false,
"total_count": 0,
"url": "/v1/transfers?source_transaction=po_1A7hu3DwfKwfo61JLm0q9___"
},
"status": "available",
"type": "transfer"
}
As you can see, there is no reference to the charge. Is it not possible via HTTP gets? Or is this advice pertaining to a newer version of the API?