You are here

public function MoxtraService::getMeetingFilesList in Opigno Moxtra 3.x

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

Returns meeting files list.

Parameters

int $owner_id: User ID.

string $binder_id: Binder ID.

Return value

array Response data.

Overrides MoxtraServiceInterface::getMeetingFilesList

File

src/MoxtraService.php, line 535

Class

MoxtraService
Implements Moxtra REST API.

Namespace

Drupal\opigno_moxtra

Code

public function getMeetingFilesList($owner_id, $binder_id) {
  $url = $this
    ->getMeetingFilesListUrl($owner_id, $binder_id);
  return $this->moxtraConnector
    ->request($url, [], 'GET');
}