v1
latestOpenAPI 3.0.12026-07-26106359429.8 KBInternal Transfer
List all Internal Transfers
List all Internal Transfers.
get/v1/internal_transfer
Query parameters
sender_account_number_idstring
The sender account number ID.
receiver_account_number_idstring
The receiver account number ID.
status'processing' | 'posted' | 'rejected'
The current status of the InternalTransfer object.
Example:posted
A set of filters on the list using the object’s field created_at.
limitinteger
Maximum number of objects to be returned.
starting_afterstring
A cursor for use in pagination; this is an ID that defines your place in the list.
ending_beforestring
A cursor for use in pagination; this is an ID that defines your place in the list.
Response
List of Internal Transfer objects
Example response
{
"objects": [
{
"id": "internal_transfer_xyz123",
"amount": 5000,
"currency_code": "USD",
"sender_account_id": "account_xyz123",
"sender_account_number_id": "account_number_xyz123",
"receiver_account_id": "account_xyz123",
"receiver_account_number_id": "account_number_xyz123",
"status": "posted",
"rejection": {
"reason": "account_number_not_active",
"details": "Account number account_123 is inactive."
},
"created_at": "2022-06-27T11:22:33Z",
"updated_at": "2022-06-27T11:22:33Z"
}
]
}