A book transfer is an electronic funds transfer between two accounts at the same bank; such as transferring funds from a checking account to a savings account. While book transfers are the fastest and cheapest type of transfer, they are restricted to accounts held at the same bank.
apply
endpoint.GET
request to the account
endpoint.
id
property of each account object.
POST
request to the book
endpoint, passing the amount
of the transfer, as well as the from_account_id
and the to_account_id
(representing the funding account and the receiving account respectively).
The amount
property expects the numeric value representing the amount of money to be transferred in dollars, with two-decimal precision (ex: 100.00).
GET
request to the book
endpoint and passing in the id
of the book transfer. This will return a Book Transfer object with the latest status.
status
has been changed to “sent”.
book.update
event, you can be notified of changes in the status of the book transfer when they occur.
book.update
webhook notification is received, follow the steps outlined above to obtain the latest status of the transfer, or simply make a GET
request to the URL specified in the url
property of the data object.