Access the Google Meet API with managed OAuth authentication. Create and manage meeting spaces, list conference records, and retrieve participant information.
Reference
Create Space
POST /google-meet/v2/spaces
Content-Type: application/json
{}Response:
{
"name": "spaces/abc123",
"meetingUri": "https://meet.google.com/abc-defg-hij",
"meetingCode": "abc-defg-hij",
"config": {
"accessType": "OPEN",
"entryPointAccess": "ALL"
}
}Get Space
GET /google-meet/v2/spaces/{spaceId}Update Space
PATCH /google-meet/v2/spaces/{spaceId}
Content-Type: application/json
{
"config": {
"accessType": "TRUSTED"
}
}End Active Call
POST /google-meet/v2/spaces/{spaceId}:endActiveConferenceList Conference Records
GET /google-meet/v2/conferenceRecordsWith filter:
GET /google-meet/v2/conferenceRecords?filter=space.name="spaces/abc123"Get Conference Record
GET /google-meet/v2/conferenceRecords/{conferenceRecordId}List Participants
GET /google-meet/v2/conferenceRecords/{conferenceRecordId}/participantsGet Participant
GET /google-meet/v2/conferenceRecords/{conferenceRecordId}/participants/{participantId}List Participant Sessions
GET /google-meet/v2/conferenceRecords/{conferenceRecordId}/participants/{participantId}/participantSessionsList Recordings
GET /google-meet/v2/conferenceRecords/{conferenceRecordId}/recordingsGet Recording
GET /google-meet/v2/conferenceRecords/{conferenceRecordId}/recordings/{recordingId}List Transcripts
GET /google-meet/v2/conferenceRecords/{conferenceRecordId}/transcriptsGet Transcript
GET /google-meet/v2/conferenceRecords/{conferenceRecordId}/transcripts/{transcriptId}List Transcript Entries
GET /google-meet/v2/conferenceRecords/{conferenceRecordId}/transcripts/{transcriptId}/entries