You are here

public function MoxtraServiceInterface::updateMeeting in Opigno Moxtra 8

Same name and namespace in other branches
  1. 3.x src/MoxtraServiceInterface.php \Drupal\opigno_moxtra\MoxtraServiceInterface::updateMeeting()

Updates meeting.

Parameters

int $owner_id: User ID.

string $session_key: Session key of the meeting.

string $title: New title of the meeting.

int $starts: New start date timestamp of the meeting.

int|null $ends: New end date timestamp of the meeting.

Return value

array Response data.

1 method overrides MoxtraServiceInterface::updateMeeting()
MoxtraService::updateMeeting in src/MoxtraService.php
Updates meeting.

File

src/MoxtraServiceInterface.php, line 143

Class

MoxtraServiceInterface
Implements Moxtra REST API.

Namespace

Drupal\opigno_moxtra

Code

public function updateMeeting($owner_id, $session_key, $title, $starts, $ends = NULL);