I would like to add Pager Message authorization in my existing SMS , would that be possible ? My app is coded in C# and integrated with RingCentral SMS API
© 1999-2024 RingCentral, Inc. All rights reserved.
Privacy Notice
I would like to add Pager Message authorization in my existing SMS , would that be possible ? My app is coded in C# and integrated with RingCentral SMS API
Yes you can send pager message. Remember that it is internal messages, meaning that you can only send from one extension to another extension within an account. Here is the sample code for C#
HTTP POST /restapi/v1.0/account/{accountId}/extension/{extensionId}/company-pager
using (var rc = new RestClient("clientID", "clientSecret", "serverURL"))
{
await rc.Authorize("username", "extension", "password");
var result = await rc.Restapi(apiVersion).Account(accountId).Extension(extensionId).CompanyPager().Post(createInternalTextMessageRequest);
}
createInternalTextMessageRequest
is of type CreateInternalTextMessageRequestresult
is of type GetMessageInfoResponseapiVersion
is optional with default value v1.0
accountId
is optional with default value ~
extensionId
is optional with default value ~
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.