Get Credit Transfers
In this code snippet you will see how to retrieve a list of all credit transfers.
Example
Ensure the following variables are set to your required values using any convenient method:
| Key | Description |
|---|---|
VONAGE_API_KEY | The API key of the parent account. |
VONAGE_API_SECRET | The API secret of the parent account. |
START_DATE | The ISO format datetime from which to list transfers. Example: 2019-03-02T16:34:49Z. |
Run your code
Save this file to your machine and run it:
Prerequisites
Create a file named get-credit-transfers.js and add the following code:
const { SubAccounts } = require('@vonage/subaccounts');
const subAccountClient = new SubAccounts({
apiKey: VONAGE_API_KEY,
apiSecret: VONAGE_API_SECRET,
});Write the code
Add the following to get-credit-transfers.js:
subAccountClient.listClientTransfers({
startDate: START_DATE,
})
.then((creditTranfsers) => console.log(creditTranfsers))
.catch((error) => console.error(error));Run your code
Save this file to your machine and run it:
Prerequisites
Add the following to build.gradle:
Create a file named ListCreditTransfers and add the following code to the main method:
Run your code
We can use the application plugin for Gradle to simplify the running of our application. Update your build.gradle with the following:
Run the following gradle command to execute your application, replacing com.vonage.quickstart.kt.subaccounts with the package containing ListCreditTransfers:
Prerequisites
Add the following to build.gradle:
Create a file named ListCreditTransfers and add the following code to the main method:
VonageClient client = VonageClient.builder()
.apiKey(VONAGE_API_KEY)
.apiSecret(VONAGE_API_SECRET)
.build();Write the code
Add the following to the main method of the ListCreditTransfers file:
List<MoneyTransfer> transfers = client.getSubaccountsClient().listCreditTransfers(
ListTransfersFilter.builder().startDate(SUBACCOUNT_START_DATE).build()
);Run your code
We can use the application plugin for Gradle to simplify the running of our application. Update your build.gradle with the following:
Run the following gradle command to execute your application, replacing com.vonage.quickstart.subaccounts with the package containing ListCreditTransfers:
Prerequisites
Create a file named GetCreditTransfersRequest.cs and add the following code:
Add the following to GetCreditTransfersRequest.cs:
Prerequisites
Create a file named get-credit-transfers.php and add the following code:
$basic = new \Vonage\Client\Credentials\Basic(VONAGE_API_KEY, VONAGE_API_SECRET);
$client = new \Vonage\Client($basic);Write the code
Add the following to get-credit-transfers.php:
$startDateFilter = new Vonage\Subaccount\Filter\SubaccountFilter([
'start_date' => START_DATE
]);
$creditTransfers = $client->subaccount()->getCreditTransfers(VONAGE_API_KEY, $startDateFilter);Run your code
Save this file to your machine and run it:
Prerequisites
Run your code
Save this file to your machine and run it:
Prerequisites
Create a file named list-credit-transfers.rb and add the following code:
Run your code
Save this file to your machine and run it:
Try it out
When you run the code you will retrieve a list of all credit transfers.