Links

Transfers

nCore platform support fund transfer from one account to another account. Using this fund transfer method you can move funds between your own account as well as to any other user’s account which is also known as a peer to peer (P2P) transfer. The fund transfer method has a real time effect which means that the funds will be debited from the sender account and immediately credited to the recipient account.

Account transfers pre-requisite

Following are the prerequisites for funds sender and funds receiver accounts.
For further information regarding card products, please refer to section Product management.

Transfer funds

You can transfer funds from one account to another account by sending a POST request to /transfers endpoint as given below.
{ "sender_account_id": "bc121529-e6e9-45f1-b820-8c46ce7f005a", "recipient_account_id": "39dbff34-5505-4181-9e81-727b71e72186", "amount": 100, "currency": "USD", "notes": "Account transfer for 100 USD", "dry_run": false }

Retrieve transfers

The nCore platform offers the following retrieval options for transfers.
Retrieve all transfers
You can retrieve all existing transfers by sending a GET request to /transfers endpoint shown below.
Retrieve a list of transfers by filters
You can retrieve transfers by using the applicable filters given below.
Filter parameter
Description
sender_account_id
Sender account Identifier. You can use sender account id to get all the account transfers performed by a user.
recipient_account_id
Recipient account Identifier. You can use the receiver's account id to get all the account transfers received by a user.
transfer_date_time_start
Date and time of a transfer, starting with which you want to filter a list of transfers.
transfer_date_time_end
Date and time of a transfer, ending with which you want to filter a list of transfers.
You can use the above filter parameters in combination as well to get a precise list of transfers.
{ "transaction_id": "123456789012", "sender_account_id": "bc121529-e6e9-45f1-b820-8c46ce7f005a", "recipient_account_id": "39dbff34-5505-4181-9e81-727b71e72186", "transfer_date_time_start": “10012021", “transfer_date_time_end”: “11012021” }
Retrieve a specific transfer
You can retrieve a specific transfer by sending a GET request to /transfers/{id} endpoint, where id is the transfer ID.