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