I am getting this error of "Method Not Allowed" when trying to retrieve the call logs through PHP.
RingCentral API Error -> Method Not Allowed
Any Ideas?
$call_log_url = '/account/~/extension/~/call-log';
$ref = &$this->connection->platform;
try {
$apiResponse = $ref->post($call_log_url);
// dd($apiResponse);
}
catch (RingCentralSDKHttpApiException $e) {
echo 'RingCentral API Error -> <b>' . $e->getMessage() . '</b>';
}