クレジット・トランスファー
このコード・スニペットでは、すべての債権譲渡のリストを取得する方法を説明します。
例
以下の変数が、便利な方法で必要な値に設定されていることを確認してください:
| キー | 説明 |
|---|---|
VONAGE_API_KEY | 親アカウントのAPIキー。 |
VONAGE_API_SECRET | 親アカウントのAPIシークレット。 |
START_DATE | 転送をリストするISO形式の日付。例 2019-03-02T16:34:49Z. |
Write the code
Add the following to get-credit-transfers.sh:
curl "https://api.nexmo.com/accounts/$VONAGE_API_KEY/credit-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-credit-transfers.js and add the following code:
Run your code
Save this file to your machine and run it:
Prerequisites
Add the following to build.gradle:
Create a class named ListCreditTransfers and add the following code to the main method:
Write the code
Add the following to the main method of the ListCreditTransfers class:
Run your code
We can use the アプリケーション 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 class named ListCreditTransfers and add the following code to the main method:
Write the code
Add the following to the main method of the ListCreditTransfers class:
Run your code
We can use the アプリケーション 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
Install-Package VonageCreate a file named GetCreditTransfersRequest.cs and add the following code:
Add the following to GetCreditTransfersRequest.cs:
Prerequisites
composer require vonage/clientCreate a file named get-credit-transfers.php and add the following code:
Run your code
Save this file to your machine and run it:
Prerequisites
pip install vonage python-dotenvRun your code
Save this file to your machine and run it:
Prerequisites
gem install vonageCreate a file named list-credit-transfers.rb and add the following code:
Run your code
Save this file to your machine and run it:
試してみる
このコードを実行すると、すべての債権譲渡のリストが表示されます。