残高照会
このコード・スニペットでは、すべての残高移動のリストを取得する方法を説明します。
例
以下の変数が、便利な方法で必要な値に設定されていることを確認してください:
| キー | 説明 |
|---|---|
VONAGE_API_KEY | 親アカウントのAPIキー。 |
VONAGE_API_SECRET | 親アカウントのAPIシークレット。 |
START_DATE | 転送をリストするISO形式の日付。例 2019-03-02T16:34:49Z. |
Write the code
Add the following to get-balance-transfers.sh:
curl "https://api.nexmo.com/accounts/$VONAGE_API_KEY/balance-transfers?start_date=$START_DATE" -u $VONAGE_API_KEY:$VONAGE_API_SECRETRun your code
Save this file to your machine and run it:
Prerequisites
npm install @vonage/subaccountsCreate a file named get-balance-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-balance-transfers.js:
subAccountClient.listBalanceTransfers({
startDate: START_DATE,
})
.then((balanceTranfsers) => console.log(balanceTranfsers))
.catch((error) => console.error(error));Run your code
Save this file to your machine and run it:
Prerequisites
Add the following to build.gradle:
implementation 'com.vonage:server-sdk-kotlin:2.1.1'Create a class named ListBalanceTransfers and add the following code to the main method:
val client = Vonage {
apiKey(VONAGE_API_KEY)
apiSecret(VONAGE_API_SECRET)
}Write the code
Add the following to the main method of the ListBalanceTransfers class:
val transfers = client.subaccounts.listBalanceTransfers(startDate = SUBACCOUNT_START_DATE)Run your code
We can use the アプリケーション plugin for Gradle to simplify the running of our application. Update your build.gradle with the following:
apply plugin: 'application'
mainClassName = project.hasProperty('main') ? project.getProperty('main') : ''Run the following gradle command to execute your application, replacing com.vonage.quickstart.kt.subaccounts with the package containing ListBalanceTransfers:
Prerequisites
Add the following to build.gradle:
implementation 'com.vonage:server-sdk:9.3.1'Create a class named ListBalanceTransfers 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 ListBalanceTransfers class:
List<MoneyTransfer> transfers = client.getSubaccountsClient().listBalanceTransfers(
ListTransfersFilter.builder().startDate(SUBACCOUNT_START_DATE).build()
);Run your code
We can use the アプリケーション plugin for Gradle to simplify the running of our application. Update your build.gradle with the following:
apply plugin: 'application'
mainClassName = project.hasProperty('main') ? project.getProperty('main') : ''Run the following gradle command to execute your application, replacing com.vonage.quickstart.subaccounts with the package containing ListBalanceTransfers:
Prerequisites
Install-Package VonageCreate a file named GetBalanceTransfersRequest.cs and add the following code:
using Vonage;
using Vonage.Request;
using Vonage.SubAccounts.GetTransfers;Add the following to GetBalanceTransfersRequest.cs:
var credentials = Credentials.FromApiKeyAndSecret(VONAGE_API_KEY, VONAGE_API_SECRET);
var client = new VonageClient(credentials);Write the code
Add the following to GetBalanceTransfersRequest.cs:
var request = GetTransfersRequest.Build()
.WithStartDate(START_DATE)
.Create();
var response = await client.SubAccountsClient.GetBalanceTransfersAsync(request);Prerequisites
composer require vonage/clientCreate a file named get-balance-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-balance-transfers.php:
$startDateFilter = new Vonage\Subaccount\Filter\SubaccountFilter([
'start_date' => START_DATE
]);
$balanceTransfers = $client->subaccount()->getBalanceTransfers(VONAGE_API_KEY, $startDateFilter);Run your code
Save this file to your machine and run it:
Prerequisites
pip install vonage python-dotenvWrite the code
Add the following to list-balance-transfers.py:
from vonage import Auth, Vonage
from vonage_subaccounts import ListTransfersFilter, Transfer
client = Vonage(Auth(api_key=VONAGE_API_KEY, api_secret=VONAGE_API_SECRET))
response: list[Transfer] = client.subaccounts.list_balance_transfers(
ListTransfersFilter(start_date=SUBACCOUNT_START_DATE)
)
print(response)Run your code
Save this file to your machine and run it:
Prerequisites
gem install vonageCreate a file named list-balance-transfers.rb and add the following code:
client = Vonage::Client.new(
api_key: VONAGE_API_KEY,
api_secret: VONAGE_API_SECRET
)Write the code
Add the following to list-balance-transfers.rb:
balance_transfers_list = client.subaccounts.list_balance_transfers(start_date: START_DATE)Run your code
Save this file to your machine and run it:
試してみる
コードを実行すると、すべての残高移動のリストが表示されます。