REST Resource: conferenceRecords.participants
Sử dụng bộ sưu tập để sắp xếp ngăn nắp các trang
Lưu và phân loại nội dung dựa trên lựa chọn ưu tiên của bạn.
Tài nguyên: Người tham gia
Người dùng đã tham dự hoặc đang tham dự một hội nghị.
Biểu diễn dưới dạng 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 .
} |
Trường |
name |
string
Chỉ có đầu ra. Tên tài nguyên của người tham gia. Định dạng conferenceRecords/{conferenceRecord}/participants/{participant}
|
earliestStartTime |
string (Timestamp format)
Chỉ có đầu ra. Thời điểm người tham gia tham gia cuộc họp lần đầu.
|
latestEndTime |
string (Timestamp format)
Chỉ có đầu ra. Thời điểm người tham gia rời khỏi cuộc họp lần cuối cùng. Giá trị này có thể rỗng nếu đó là cuộc họp đang hoạt động.
|
Trường hợp hợp nhất user . user chỉ có thể là một trong những loại sau:
|
signedinUser |
object (SignedinUser )
Người dùng đã đăng nhập.
|
anonymousUser |
object (AnonymousUser )
Người dùng ẩn danh.
|
phoneUser |
object (PhoneUser )
Người dùng gọi điện từ điện thoại.
|
SignedinUser
Người dùng đã đăng nhập có thể là: a) Một cá nhân tham gia từ máy tính cá nhân, thiết bị di động hoặc thông qua chế độ đồng hành. b) Một tài khoản robot do các thiết bị phòng họp sử dụng.
Biểu diễn dưới dạng JSON |
{
"user": string,
"displayName": string
} |
Trường |
user |
string
Chỉ có đầu ra. Mã nhận dạng duy nhất của người dùng. Có thể tương tác với API SDK dành cho quản trị viên và API People. Định dạng users/{user}
|
displayName |
string
Chỉ có đầu ra. Đối với thiết bị cá nhân, đó là tên và họ của người dùng. Đối với tài khoản robot, đó là tên thiết bị do quản trị viên chỉ định. Ví dụ: "Phòng Altostrat".
|
AnonymousUser
Người dùng tham gia ẩn danh (tức là chưa đăng nhập vào Tài khoản Google).
Biểu diễn dưới dạng JSON |
{
"displayName": string
} |
Trường |
displayName |
string
Chỉ có đầu ra. Tên do người dùng cung cấp khi họ tham gia cuộc họp một cách ẩn danh.
|
PhoneUser
Người dùng gọi điện từ một chiếc điện thoại mà danh tính của người dùng không xác định được vì họ chưa đăng nhập bằng Tài khoản Google.
Biểu diễn dưới dạng JSON |
{
"displayName": string
} |
Trường |
displayName |
string
Chỉ có đầu ra. Số điện thoại của người dùng bị loại bỏ một phần khi gọi điện.
|
Phương thức |
|
Lấy một người tham gia theo mã nhận dạng người tham gia. |
|
Liệt kê những người tham gia trong bản ghi hội nghị. |
Trừ phi có lưu ý khác, nội dung của trang này được cấp phép theo Giấy phép ghi nhận tác giả 4.0 của Creative Commons và các mẫu mã lập trình được cấp phép theo Giấy phép Apache 2.0. Để biết thông tin chi tiết, vui lòng tham khảo Chính sách trang web của Google Developers. Java là nhãn hiệu đã đăng ký của Oracle và/hoặc các đơn vị liên kết với Oracle.
Cập nhật lần gần đây nhất: 2025-07-25 UTC.
[null,null,["Cập nhật lần gần đây nhất: 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. |"]]