Retrieve
Get card financial transaction
get/v1/cards/{card_token}/financial_transactions/{financial_transaction_token}
Get the card financial transaction for the provided token.
Path Parameters
card_tokenstring
formatuuid
financial_transaction_tokenstring
formatuuid
Returns
tokenstringcategoryenumcreatedstringcurrencystringdescriptorstringeventsarray of objectpending_amountnumberresultenumsettled_amountnumberstatusenumupdatedstringFinancialTransaction
Request example Request
curl https://api.lithic.com/v1/cards/$CARD_TOKEN/financial_transactions/$FINANCIAL_TRANSACTION_TOKEN \
-H "Authorization: $LITHIC_API_KEY"
200 Example
{
"token": "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
"category": "ACH",
"created": "2019-12-27T18:11:19.117Z",
"currency": "currency",
"descriptor": "descriptor",
"events": [
{
"token": "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
"amount": 0,
"created": "2019-12-27T18:11:19.117Z",
"result": "APPROVED",
"type": "ACH_ORIGINATION_CANCELLED"
}
],
"pending_amount": 0,
"result": "APPROVED",
"settled_amount": 0,
"status": "DECLINED",
"updated": "2019-12-27T18:11:19.117Z"
}