public function MoxtraService::getMeetingFileInfo in Opigno Moxtra 3.x
Same name and namespace in other branches
- 8 src/MoxtraService.php \Drupal\opigno_moxtra\MoxtraService::getMeetingFileInfo()
Returns meeting file info.
Parameters
int $owner_id: User ID.
string $binder_id: Binder ID.
string $file_id: File ID.
Return value
array Response data.
Overrides MoxtraServiceInterface::getMeetingFileInfo
File
- src/
MoxtraService.php, line 543
Class
- MoxtraService
- Implements Moxtra REST API.
Namespace
Drupal\opigno_moxtraCode
public function getMeetingFileInfo($owner_id, $binder_id, $file_id) {
$url = $this
->getMeetingFileInfoUrl($owner_id, $binder_id, $file_id);
return $this->moxtraConnector
->request($url, [], 'GET');
}