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