Reverse
Reverse book transfer
post/v1/book_transfers/{book_transfer_token}/reverse
Reverse a book transfer
Path Parameters
book_transfer_tokenstring
formatuuid
Body Parameters
memostring
optional
Optional descriptor for the reversal.
maxLength512
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/reverse \
-H 'Content-Type: application/json' \
-H "Authorization: $LITHIC_API_KEY" \
-d '{}'
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"
}