i would like to make outbound from my custom web page (aspx)? How I can make call and do the out bound call? do we have any sample code
© 1999-2024 RingCentral, Inc. All rights reserved.
Privacy Notice
i would like to make outbound from my custom web page (aspx)? How I can make call and do the out bound call? do we have any sample code
using RingCentral; //Initialize Ring Central Client var sdk = new SDK( "your appKey", "your appSecret", "RingCentral apiServer", "Application Name", "Application Version"); var authResponse = sdk.Platform.Login(userName, extension, password, true); var ringoutPostBodyJson = "{"from":{"phoneNumber":"","forwardingNumberId":""},"to":{"phoneNumber":""},"callerId":{"phoneNumber":""},"playPrompt":false,"country":{"id":""}}";
var request = new Request("/restapi/v1.0/account/~/extension/~/ringout", ringoutPostBodyJson);
var ringoutResponse = sdk.Platform.Post(request);
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.