Skip to content

Retrieve

Get book transfer by token
get/v1/book_transfers/{book_transfer_token}

Get book transfer by token

Path Parameters
book_transfer_tokenstring
formatuuid
Returns
tokenstringcategoryenumcreatedstringcurrencystringeventsarray of objectfrom_financial_account_tokenstringpending_amountnumberresultenumsettled_amountnumberstatusenumto_financial_account_tokenunknownupdatedstringBookTransferResponse
Request example Request
curl https://api.lithic.com/v1/book_transfers/$BOOK_TRANSFER_TOKEN \
    -H "Authorization: $LITHIC_API_KEY"
200 Example
{
  "token": "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
  "category": "ADJUSTMENT",
  "created": "2019-12-27T18:11:19.117Z",
  "currency": "currency",
  "events": [
    {
      "token": "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
      "amount": 0,
      "created": "2019-12-27T18:11:19.117Z",
      "detailed_results": [
        "APPROVED"
      ],
      "memo": "memo",
      "result": "APPROVED",
      "subtype": "subtype",
      "type": "type"
    }
  ],
  "from_financial_account_token": "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
  "pending_amount": 0,
  "result": "APPROVED",
  "settled_amount": 0,
  "status": "DECLINED",
  "to_financial_account_token": {},
  "updated": "2019-12-27T18:11:19.117Z"
}