public function MoxtraService::getMeetingRecordingInfo in Opigno Moxtra 8
Same name and namespace in other branches
- 3.x src/MoxtraService.php \Drupal\opigno_moxtra\MoxtraService::getMeetingRecordingInfo()
Returns meeting recording info.
Parameters
int $owner_id: User ID.
string $binder_id: Binder ID.
Return value
array Response data.
Overrides MoxtraServiceInterface::getMeetingRecordingInfo
File
- src/
MoxtraService.php, line 551
Class
- MoxtraService
- Implements Moxtra REST API.
Namespace
Drupal\opigno_moxtraCode
public function getMeetingRecordingInfo($owner_id, $binder_id) {
$url = $this
->getMeetingRecordingInfoUrl($owner_id, $binder_id);
return $this->moxtraConnector
->request($url, [], 'GET');
}