这份文档还在翻译中,预期年底前完成。欢迎您提供宝贵的意见及建议。
Transfer Credit
In this code snippet you will see how to transfer credit from a parent account's credit facility to a subaccount.
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. |
SUBACCOUNT_KEY |
The API key of the subaccount to receive the credit. |
AMOUNT |
The amount to be credited to the specified subaccount. |
Write the code
Add the following to transfer-credit.sh
:
curl -X POST -u $VONAGE_API_KEY:$VONAGE_API_SECRET https://api.nexmo.com/accounts/$VONAGE_API_KEY/credit-transfers \
-H "Content-Type: application/json" \
-d $'{"from":"$VONAGE_API_KEY", "to":"$SUBACCOUNT_KEY", "amount": '$AMOUNT'}'
Run your code
Save this file to your machine and run it:
bash transfer-credit.sh
Try it out
When you run the code you will transfer the specified amount of credit to the specified subaccount.