This component supports both REST over HTTP/1.1 and gRPC. In order to take advantage of the benefits
offered by gRPC (such as streaming methods) please see our
gRPC installation guide.
Authentication
Please see our Authentication guide for more information
on authenticating your client. Once authenticated, you'll be ready to start making requests.
Sample
Google\ApiCore\ApiException;
Google\Apps\Meet\V2\Client\ConferenceRecordsServiceClient;
Google\Apps\Meet\V2\ConferenceRecord;
Google\Apps\Meet\V2\GetConferenceRecordRequest;
// Create a client.
$conferenceRecordsServiceClient = new ConferenceRecordsServiceClient();
// Prepare the request message.
$request = (new GetConferenceRecordRequest())
->setName($formattedName);
// Call the API and handle any network failures.
try {
/** @var ConferenceRecord $response */
$response = $conferenceRecordsServiceClient->getConferenceRecord($request);
printf('Response data: %s' . PHP_EOL, $response->serializeToJsonString());
} catch (ApiException $ex) {
printf('Call failed with message: %s' . PHP_EOL, $ex->getMessage());
}
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-08-07 UTC."],[],[],null,["Version latestkeyboard_arrow_down\n\n- [0.4.1 (latest)](/php/docs/reference/apps-meet/latest)\n- [0.4.0](/php/docs/reference/apps-meet/0.4.0)\n- [0.3.0](/php/docs/reference/apps-meet/0.3.0)\n- [0.2.6](/php/docs/reference/apps-meet/0.2.6)\n- [0.1.0](/php/docs/reference/apps-meet/0.1.0) \n\nGoogle Apps Meet for PHP\n========================\n\n| **Beta**\n|\n| This library is covered by the [Pre-GA Offerings Terms](/terms/service-terms#1) of the Terms of Service. Pre-GA libraries might have limited support, and changes to pre-GA libraries might not be compatible with other pre-GA versions. For more information, see the [launch stage descriptions](/products#product-launch-stages).\n\u003e Idiomatic PHP client for [Google Apps Meet](https://developers.google.com/meet/api/guides/overview).\n\n[](https://packagist.org/packages/google/apps-meet) [](https://packagist.org/packages/google/apps-meet)\n\n**NOTE:** This repository is part of [Google Cloud PHP](https://github.com/googleapis/google-cloud-php). Any\nsupport requests, bug reports, or development contributions should be directed to\nthat project.\n\n### Installation\n\nTo begin, install the preferred dependency manager for PHP, [Composer](https://getcomposer.org/).\n\nNow, install this component: \n\n $ composer require google/apps-meet\n\n\u003e Browse the complete list of [Google Cloud APIs](https://cloud.google.com/php/docs/reference)\n\u003e for PHP\n\nThis component supports both REST over HTTP/1.1 and gRPC. In order to take advantage of the benefits\noffered by gRPC (such as streaming methods) please see our\n[gRPC installation guide](https://cloud.google.com/php/grpc).\n\n### Authentication\n\nPlease see our [Authentication guide](https://github.com/googleapis/google-cloud-php/blob/main/AUTHENTICATION.md) for more information\non authenticating your client. Once authenticated, you'll be ready to start making requests.\n\n### Sample\n\n Google\\ApiCore\\ApiException;\n Google\\Apps\\Meet\\V2\\Client\\ConferenceRecordsServiceClient;\n Google\\Apps\\Meet\\V2\\ConferenceRecord;\n Google\\Apps\\Meet\\V2\\GetConferenceRecordRequest;\n\n // Create a client.\n $conferenceRecordsServiceClient = new ConferenceRecordsServiceClient();\n\n // Prepare the request message.\n $request = (new GetConferenceRecordRequest())\n -\u003esetName($formattedName);\n\n // Call the API and handle any network failures.\n try {\n /** @var ConferenceRecord $response */\n $response = $conferenceRecordsServiceClient-\u003egetConferenceRecord($request);\n printf('Response data: %s' . PHP_EOL, $response-\u003eserializeToJsonString());\n } catch (ApiException $ex) {\n printf('Call failed with message: %s' . PHP_EOL, $ex-\u003egetMessage());\n }\n\nSee the [samples directory](https://github.com/googleapis/php-apps-meet/tree/main/samples) for a canonical list of samples.\n\n### Debugging\n\nPlease see our [Debugging guide](https://github.com/googleapis/google-cloud-php/blob/main/DEBUG.md)\nfor more information about the debugging tools.\n\n### Version\n\nThis component is considered alpha. As such, it is still a work-in-progress and is more likely to get backwards-incompatible updates.\n\n### Next Steps\n\n1. Understand the [official documentation](https://developers.google.com/meet/api/guides/overview)."]]