protected function MoxtraService::getDeleteMeetingUrl in Opigno Moxtra 8
Same name and namespace in other branches
- 3.x src/MoxtraService.php \Drupal\opigno_moxtra\MoxtraService::getDeleteMeetingUrl()
Returns URL to delete a meeting.
Parameters
int $owner_id: User ID.
string $session_key: Session key of the Live Meeting.
Return value
string URL.
1 call to MoxtraService::getDeleteMeetingUrl()
- MoxtraService::deleteMeeting in src/
MoxtraService.php - Deletes meeting.
File
- src/
MoxtraService.php, line 245
Class
- MoxtraService
- Implements Moxtra REST API.
Namespace
Drupal\opigno_moxtraCode
protected function getDeleteMeetingUrl($owner_id, $session_key) {
$token = $this->moxtraConnector
->getToken($owner_id);
return $this->moxtraConnector
->getUrl() . "/v1/meets/{$session_key}?access_token={$token}";
}