You are here

public function MoxtraService::deleteMeeting in Opigno Moxtra 8

Same name and namespace in other branches
  1. 3.x 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_moxtra

Code

public function deleteMeeting($owner_id, $session_key) {
  $url = $this
    ->getDeleteMeetingUrl($owner_id, $session_key);
  return $this->moxtraConnector
    ->request($url, [], 'DELETE');
}