Reactivate a Subaccount
In this code snippet you will see how to reactivate a suspended 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 be reactivated. |
Write the code
Add the following to reactivate-subaccount.sh
:
curl -X PATCH -u $VONAGE_API_KEY:$VONAGE_API_SECRET https://api.nexmo.com/accounts/$VONAGE_API_KEY/subaccounts/$SUBACCOUNT_KEY \
-H "Content-Type: application/json" \
-d $'{"suspended":false}'
Run your code
Save this file to your machine and run it:
bash reactivate-subaccount.sh
Try it out
When you run the code you will reactivate the specified suspended subaccount of the parent account.