REST Resource: conferenceRecords.participants
Restez organisé à l'aide des collections
Enregistrez et classez les contenus selon vos préférences.
Ressource: Participant
Utilisateur ayant assisté ou assistant à une conférence
Représentation JSON |
{
"name": string,
"earliestStartTime": string,
"latestEndTime": string,
// Union field user can be only one of the following:
"signedinUser": {
object (SignedinUser )
},
"anonymousUser": {
object (AnonymousUser )
},
"phoneUser": {
object (PhoneUser )
}
// End of list of possible types for union field user .
} |
Champs |
name |
string
Uniquement en sortie. Nom de ressource du participant. Format : conferenceRecords/{conferenceRecord}/participants/{participant}
|
earliestStartTime |
string (Timestamp format)
Uniquement en sortie. Heure à laquelle le participant a rejoint la réunion pour la première fois.
|
latestEndTime |
string (Timestamp format)
Uniquement en sortie. Heure à laquelle le participant a quitté la réunion pour la dernière fois. Ce paramètre peut être nul s'il s'agit d'une réunion active.
|
Champ d'union user . user ne peut être qu'un des éléments suivants :
|
signedinUser |
object (SignedinUser )
Utilisateur connecté.
|
anonymousUser |
object (AnonymousUser )
Utilisateur anonyme.
|
phoneUser |
object (PhoneUser )
Utilisateur appelant depuis son téléphone.
|
SignedinUser
Un utilisateur connecté peut être: a) Une personne qui rejoint la réunion depuis un ordinateur personnel, un appareil mobile ou le mode Compagnon. b) Un compte robot utilisé par les appareils de salle de conférence.
Représentation JSON |
{
"user": string,
"displayName": string
} |
Champs |
user |
string
Uniquement en sortie. Identifiant unique de l'utilisateur. Interopérabilité avec l'API Admin SDK et l'API People Format : users/{user}
|
displayName |
string
Uniquement en sortie. Pour un appareil personnel, il s'agit du prénom et du nom de l'utilisateur. Pour un compte robot, il s'agit du nom de l'appareil spécifié par l'administrateur. (par exemple, "Chambre Altostrat").
|
AnonymousUser
Utilisateur qui rejoint la réunion de manière anonyme (c'est-à-dire sans être connecté à un compte Google).
Représentation JSON |
{
"displayName": string
} |
Champs |
displayName |
string
Uniquement en sortie. Nom fourni par l'utilisateur lorsqu'il rejoint une conférence de manière anonyme.
|
PhoneUser
Utilisateur participant par téléphone, dont l'identité est inconnue, car il ne s'est pas connecté avec un compte Google
Représentation JSON |
{
"displayName": string
} |
Champs |
displayName |
string
Uniquement en sortie. Numéro de téléphone de l'utilisateur partiellement masqué lors de l'appel.
|
Méthodes |
|
Récupère un participant par ID de participant. |
|
Répertorie les participants à un enregistrement de conférence. |
Sauf indication contraire, le contenu de cette page est régi par une licence Creative Commons Attribution 4.0, et les échantillons de code sont régis par une licence Apache 2.0. Pour en savoir plus, consultez les Règles du site Google Developers. Java est une marque déposée d'Oracle et/ou de ses sociétés affiliées.
Dernière mise à jour le 2025/07/25 (UTC).
[null,null,["Dernière mise à jour le 2025/07/25 (UTC)."],[],[],null,["# REST Resource: conferenceRecords.participants\n\n- [Resource: Participant](#Participant)\n - [JSON representation](#Participant.SCHEMA_REPRESENTATION)\n- [SignedinUser](#SignedinUser)\n - [JSON representation](#SignedinUser.SCHEMA_REPRESENTATION)\n- [AnonymousUser](#AnonymousUser)\n - [JSON representation](#AnonymousUser.SCHEMA_REPRESENTATION)\n- [PhoneUser](#PhoneUser)\n - [JSON representation](#PhoneUser.SCHEMA_REPRESENTATION)\n- [Methods](#METHODS_SUMMARY)\n\nResource: Participant\n---------------------\n\nUser who attended or is attending a conference.\n\n| JSON representation |\n|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| ``` { \"name\": string, \"earliestStartTime\": string, \"latestEndTime\": string, // Union field `user` can be only one of the following: \"signedinUser\": { object (/workspace/meet/api/reference/rest/v2/conferenceRecords.participants#SignedinUser) }, \"anonymousUser\": { object (/workspace/meet/api/reference/rest/v2/conferenceRecords.participants#AnonymousUser) }, \"phoneUser\": { object (/workspace/meet/api/reference/rest/v2/conferenceRecords.participants#PhoneUser) } // End of list of possible types for union field `user`. } ``` |\n\n| Fields ||\n|---------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `name` | `string` Output only. Resource name of the participant. Format: `conferenceRecords/{conferenceRecord}/participants/{participant}` |\n| `earliestStartTime` | `string (`[Timestamp](https://protobuf.dev/reference/protobuf/google.protobuf/#timestamp)` format)` Output only. Time when the participant first joined the meeting. |\n| `latestEndTime` | `string (`[Timestamp](https://protobuf.dev/reference/protobuf/google.protobuf/#timestamp)` format)` Output only. Time when the participant left the meeting for the last time. This can be null if it's an active meeting. |\n| Union field `user`. `user` can be only one of the following: ||\n| `signedinUser` | `object (`[SignedinUser](/workspace/meet/api/reference/rest/v2/conferenceRecords.participants#SignedinUser)`)` Signed-in user. |\n| `anonymousUser` | `object (`[AnonymousUser](/workspace/meet/api/reference/rest/v2/conferenceRecords.participants#AnonymousUser)`)` Anonymous user. |\n| `phoneUser` | `object (`[PhoneUser](/workspace/meet/api/reference/rest/v2/conferenceRecords.participants#PhoneUser)`)` User calling from their phone. |\n\nSignedinUser\n------------\n\nA signed-in user can be: a) An individual joining from a personal computer, mobile device, or through companion mode. b) A robot account used by conference room devices.\n\n| JSON representation |\n|---------------------------------------------------|\n| ``` { \"user\": string, \"displayName\": string } ``` |\n\n| Fields ||\n|---------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `user` | `string` Output only. Unique ID for the user. Interoperable with Admin SDK API and People API. Format: `users/{user}` |\n| `displayName` | `string` Output only. For a personal device, it's the user's first name and last name. For a robot account, it's the administrator-specified device name. For example, \"Altostrat Room\". |\n\nAnonymousUser\n-------------\n\nUser who joins anonymously (meaning not signed into a Google Account).\n\n| JSON representation |\n|-----------------------------------|\n| ``` { \"displayName\": string } ``` |\n\n| Fields ||\n|---------------|-----------------------------------------------------------------------------------|\n| `displayName` | `string` Output only. User provided name when they join a conference anonymously. |\n\nPhoneUser\n---------\n\nUser dialing in from a phone where the user's identity is unknown because they haven't signed in with a Google Account.\n\n| JSON representation |\n|-----------------------------------|\n| ``` { \"displayName\": string } ``` |\n\n| Fields ||\n|---------------|----------------------------------------------------------------------------|\n| `displayName` | `string` Output only. Partially redacted user's phone number when calling. |\n\n| Methods ------- ||\n|---------------------------------------------------------------------------------------|------------------------------------------------|\n| ### [get](/workspace/meet/api/reference/rest/v2/conferenceRecords.participants/get) | Gets a participant by participant ID. |\n| ### [list](/workspace/meet/api/reference/rest/v2/conferenceRecords.participants/list) | Lists the participants in a conference record. |"]]