ringcentral

Is it possible to set a RingCentral user's timezone through the API?

倖福魔咒の 提交于 2021-01-29 08:52:25
问题 I was looking thru the API for how to set timezone and cannot find it. Is there not a way to set the timezone thru the API? 回答1: A user's timezone is set as part of their extension properties and is read using the Extension Info API and set via the Update Extension Info endpoint, not a specific timezone endpoint. I'll start with the read because the response provides an easy way to create the update timezone request. Read Timezone To read the user's current timezone, retrieve the user's

RingCentral: Build Failed Task failed with exit code 65: Carthage installation

二次信任 提交于 2021-01-27 12:19:14
问题 I have a project that was build in Xcode9. Now I am updating it to Xcode10. I am using RingCentral iOS SDK. But whenever I update the SDK, it shows this error: I have tried almost all methods for cleaning and building derived data Carthage version = 0.32.0 Xcode version = 10.1 Please help, I am stuck and cannot run the project carthage update --platform iOS *** Fetching ringcentral-swift *** Fetching CryptoSwift *** Fetching objective-c *** Fetching Alamofire *** Fetching ObjectMapper ***

RingCentral: Build Failed Task failed with exit code 65: Carthage installation

試著忘記壹切 提交于 2021-01-27 12:12:12
问题 I have a project that was build in Xcode9. Now I am updating it to Xcode10. I am using RingCentral iOS SDK. But whenever I update the SDK, it shows this error: I have tried almost all methods for cleaning and building derived data Carthage version = 0.32.0 Xcode version = 10.1 Please help, I am stuck and cannot run the project carthage update --platform iOS *** Fetching ringcentral-swift *** Fetching CryptoSwift *** Fetching objective-c *** Fetching Alamofire *** Fetching ObjectMapper ***

How to make RingCentral sandbox calls with recording

妖精的绣舞 提交于 2020-05-29 10:13:11
问题 I have a RingCentral developer account but I am unable to successfully establish a call. Furthermore I would also like the call to be recorded, so that later I can access the call logs and recording. 回答1: One of the simplest ways to place test calls is through RingCentral's "softphone" [1]. This is an app for your desktop that has the functionality you require. You can place calls, and record calls as well. It also gives you access to your call log, and call recordings. This can be helpful if

RingCentral Meetings API Error - “user needs to have [Meetings] permission for requested resource”

会有一股神秘感。 提交于 2020-01-06 03:50:06
问题 I have created an app for reading meeting list and I'm getting this error below although I have set permission for Meetings . API: GET /restapi/v1.0/account/{accountId}/extension/{extensionId}/meeting Error: { "errorCode":"CMN-408", "message":"In order to call this API endpoint, user needs to have [Meetings] permission for requested resource.", "errors":[ { "errorCode":"CMN-408", "message":"In order to call this API endpoint, user needs to have [Meetings] permission for requested resource.",

How can I get a user's call queue / department?

扶醉桌前 提交于 2019-12-25 03:09:07
问题 If I have a user's extensionId , how can I get the user's call queue / department info, e.g. a specific team like "department": "Sales" . I know I can call the following endpoint and get a list of call queues / departments using the following, but I want a list specific to a user: List Call Queues API GET /restapi/v1.0/account/{accountId}/call-queues Get Extension List API GET /restapi/v1.0/account/{accountId}/extension?type=Department 回答1: A user can be a member of multiple call queues. To

Fax “from” and “callerId” parameters missing from RingCentral fax API

孤人 提交于 2019-12-13 01:44:09
问题 I've been trying to send fax using RingCentral API but there is no way to specify the From fax phone number to send the fax. It is only sending the fax using company fax number. I am not able to find the option to use fax from number. I am using the following end point for sending fax: https://platform.ringcentral.com/restapi/v1.0/account/:accountId/extension/:extensionId/fax 回答1: In the RingCentral system, the From (or sending) fax number is the fax caller ID value. You can update this for

RingCentral Auth Token Failed in Curl Call - “Unauthorized for this grant type”

浪尽此生 提交于 2019-12-13 00:33:55
问题 I am trying to get an auth token from the RingCentral auth token /restapi/oauth/token endpoint with cURL but it fails with the error: 400 Bad Request { "error": "unauthorized_client", "error_description": "Unauthorized for this grant type", "errors": [ { "errorCode": "OAU-251", "message": "Unauthorized for this grant type" } ] } This is what I have tried: curl -X POST "https://platform.devtest.ringcentral.com/restapi/oauth/token" \ -H "Accept: application/json" \ -H "Content-Type: application