protected function MoxtraService::getAddUsersToMeetingUrl in Opigno Moxtra 8
Same name and namespace in other branches
- 3.x src/MoxtraService.php \Drupal\opigno_moxtra\MoxtraService::getAddUsersToMeetingUrl()
Returns URL to add the users to the meeting.
Parameters
int $owner_id: User ID.
Return value
string URL.
1 call to MoxtraService::getAddUsersToMeetingUrl()
- MoxtraService::AddUsersToMeeting in src/
MoxtraService.php - Add the users to the meeting.
File
- src/
MoxtraService.php, line 310
Class
- MoxtraService
- Implements Moxtra REST API.
Namespace
Drupal\opigno_moxtraCode
protected function getAddUsersToMeetingUrl($owner_id) {
$token = $this->moxtraConnector
->getToken($owner_id);
return $this->moxtraConnector
->getUrl() . "/v1/meets/inviteuser?access_token={$token}";
}