You are here

public function MoxtraServiceInterface::createMeeting in Opigno Moxtra 3.x

Same name and namespace in other branches
  1. 8 src/MoxtraServiceInterface.php \Drupal\opigno_moxtra\MoxtraServiceInterface::createMeeting()

Creates meeting.

Parameters

int $owner_id: User ID.

string $title: New title of the meeting.

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

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

Return value

array Response data.

1 method overrides MoxtraServiceInterface::createMeeting()
MoxtraService::createMeeting in src/MoxtraService.php
Creates meeting.

File

src/MoxtraServiceInterface.php, line 124

Class

MoxtraServiceInterface
Implements Moxtra REST API.

Namespace

Drupal\opigno_moxtra

Code

public function createMeeting($owner_id, $title, $starts, $ends);