Create book transfer
Book transfer funds between two financial accounts or between a financial account and card
Request body
Amount to be transferred in the currency's smallest unit (e.g., cents for USD). This should always be a positive value.
Globally unique identifier for the financial account or card that will send the funds. Accepted type dependent on the program's use case.
Optional descriptor for the transfer.
The program specific subtype code for the specified category/type.
Globally unique identifier for the financial account or card that will receive the funds. Accepted type dependent on the program's use case.
Customer-provided token that will serve as an idempotency token. This token will become the transaction token.
Type of the book transfer
External ID defined by the customer
What to do if the financial account is closed when posting an operation
Token of an existing hold to settle when this transfer is initiated
Response
OK
Unique identifier for the transaction
ISO 8601 timestamp of when the transaction was created
ISO 8601 timestamp of when the transaction was last updated
TRANSFER - Book Transfer Transaction
3-character alphabetic ISO 4217 code for the settling currency of the transaction
Amount of the transaction that has been settled in the currency's smallest unit (e.g., cents)
Pending amount of the transaction in the currency's smallest unit (e.g., cents), including any acquirer fees.
The value of this field will go to zero over time once the financial transaction is settled.
Globally unique identifier for the financial account or card that will send the funds. Accepted type dependent on the program's use case
Globally unique identifier for the financial account or card that will receive the funds. Accepted type dependent on the program's use case
External ID defined by the customer
Example response
{
"currency": "USD",
"settled_amount": 500,
"pending_amount": 1000,
"transaction_series": {
"type": "FEE",
"related_transaction_token": "123e4567-e89b-12d3-a456-426614174000",
"related_transaction_event_token": "123e4567-e89b-12d3-a456-426614174000"
}
}