Using vonage-node-sdk with vonage.com

TypeScript integration

✓ Official SDK
Install
npm install vonage-node-sdk
Quick start
import Vonage_node_sdk from 'vonage-node-sdk';

const client = new Vonage_node_sdk({ apiKey: "YOUR_API_KEY" });
Get account data by ID
curl \
  -H "Authorization: Bearer $API_KEY" \
  https://api.vonage.com/t/vbc.prod/provisioning/api/accounts/{account_id}
Get account locations data by account ID
curl \
  -H "Authorization: Bearer $API_KEY" \
  https://api.vonage.com/t/vbc.prod/provisioning/api/accounts/{account_id}/locations
Get location data by account ID and location ID
curl \
  -H "Authorization: Bearer $API_KEY" \
  https://api.vonage.com/t/vbc.prod/provisioning/api/accounts/{account_id}/locations/{location_id}
SDK on GitHub 📄 API Docs
SDK
vonage-node-sdk
TypeScript
API
vonage.com
vonage.com:account
At a glance
Language TypeScript
Endpoints3
Base URLhttps://api.vonage.com/t/vbc.prod/provisioning
✓ Official