Transfers
transfers
Methods
Deprecated
post/v1/transfer
Transfer funds between two financial accounts or between a financial account and card
Response fields
Request example
curl https://api.lithic.com/v1/transfer \
-H 'Content-Type: application/json' \
-H "Authorization: $LITHIC_API_KEY" \
-d '{
"amount": 0,
"from": "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
"to": "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e"
}'200Example
{
"token": "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
"category": "TRANSFER",
"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"
}
],
"from_balance": [
{
"available_amount": 0,
"created": "2019-12-27T18:11:19.117Z",
"currency": "currency",
"financial_account_token": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"financial_account_type": "ISSUING",
"last_transaction_event_token": "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
"last_transaction_token": "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
"pending_amount": 0,
"total_amount": 0,
"updated": "2019-12-27T18:11:19.117Z"
}
],
"pending_amount": 0,
"result": "APPROVED",
"settled_amount": 0,
"status": "DECLINED",
"to_balance": [
{
"available_amount": 0,
"created": "2019-12-27T18:11:19.117Z",
"currency": "currency",
"financial_account_token": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"financial_account_type": "ISSUING",
"last_transaction_event_token": "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
"last_transaction_token": "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
"pending_amount": 0,
"total_amount": 0,
"updated": "2019-12-27T18:11:19.117Z"
}
],
"updated": "2019-12-27T18:11:19.117Z"
}Domain types
Transfer = { token, category, created, 10 more... }
