Skip to main content
Question

Call Log. No Recordings parameter

  • September 10, 2018
  • 5 replies
  • 1610 views

When I receive a

call log, the call record option is not returned, although in the Ringcentral desktop application I press the "Record Call" button and then I see this record and can listen, but through the API, when I receive the array, there is no recordings parameter. How to get a link to record a call via API?

5 replies

  • Employee
  • 448 replies
  • September 10, 2018
Here is sample code for call recording download: https://github.com/ringcentral/ringcentral-csharp-client/blob/master/RingCentral.Test/BinaryTest.cs#...

In the body of a call log record, there is a recording property where you can fetch information about it especially its ID.

  • Author
  • New Participant
  • 3 replies
  • September 10, 2018
In the request, I send the parameters /account/'.$accountId.'/extension/'.$extensionId.'/call-log and get an array in response, but there is no recording property. Do I need to specify some additional parameter in my case to get this property. Maybe something has changed in the API ?





  • Employee
  • 448 replies
  • September 10, 2018

  • Author
  • New Participant
  • 3 replies
  • September 10, 2018
This parameter causes an error in my case:

{
  "errorCode" : "InvalidParameter",
  "message" : "Parameter [withRecording] value is invalid",
  "errors" : [ {
    "errorCode" : "CMN-101",
    "message" : "Parameter [withRecording] value is invalid",
    "parameterName" : "withRecording"
  } ],
  "parameterName" : "withRecording"
}




  • Employee
  • 448 replies
  • September 10, 2018
Are you sending "true" as string or boolean?