Method: conferenceRecords.list
회의 레코드를 나열합니다. 기본적으로 시작 시간을 기준으로 내림차순으로 정렬됩니다.
HTTP 요청
GET https://meet.googleapis.com/v2/conferenceRecords
URL은 gRPC 트랜스코딩 구문을 사용합니다.
쿼리 매개변수
매개변수 |
pageSize |
integer
선택사항입니다. 반환할 회의 기록의 최대 개수입니다. 서비스는 이 값보다 더 적은 수의 값을 반환할 수 있습니다. 지정하지 않으면 최대 25개의 회의 레코드가 반환됩니다. 최댓값은 100입니다. 100을 초과하는 값은 100으로 강제 변환됩니다. 최댓값은 향후 변경될 수 있습니다.
|
pageToken |
string
선택사항입니다. 이전 List 호출에서 반환된 페이지 토큰입니다.
|
filter |
string
선택사항입니다. EBNF 형식의 사용자 지정 필터링 조건 필터링 가능한 필드는 다음과 같습니다.
space.meeting_code
space.name
start_time
end_time
예를 들어 다음 필터를 살펴보겠습니다.
space.name = "spaces/NAME"
space.meeting_code = "abc-mnop-xyz"
start_time>="2024-01-01T00:00:00.000Z" AND
start_time<="2024-01-02T00:00:00.000Z"
end_time IS NULL
|
응답 본문
contactsRecords.list 메서드의 응답입니다.
성공할 경우 응답 본문에 다음 구조의 데이터가 포함됩니다.
JSON 표현 |
{
"conferenceRecords": [
{
object (ConferenceRecord )
}
],
"nextPageToken": string
} |
필드 |
conferenceRecords[] |
object (ConferenceRecord )
한 페이지로 표시되는 회의 목록입니다.
|
nextPageToken |
string
현재 목록에 모든 회의가 포함되지 않은 경우 추가 List 호출을 위해 다시 배포되는 토큰입니다. 모든 회의가 반환된 경우 설정 해제됩니다.
|
승인 범위
다음 OAuth 범위 중 하나가 필요합니다.
https://www.googleapis.com/auth/meetings.space.created
https://www.googleapis.com/auth/meetings.space.readonly
자세한 내용은 승인 가이드를 참조하세요.
달리 명시되지 않는 한 이 페이지의 콘텐츠에는 Creative Commons Attribution 4.0 라이선스에 따라 라이선스가 부여되며, 코드 샘플에는 Apache 2.0 라이선스에 따라 라이선스가 부여됩니다. 자세한 내용은 Google Developers 사이트 정책을 참조하세요. 자바는 Oracle 및/또는 Oracle 계열사의 등록 상표입니다.
최종 업데이트: 2024-09-11(UTC)
[null,null,["최종 업데이트: 2024-09-11(UTC)"],[[["This API lists conference records, ordered by start time in descending order, with options for filtering and pagination."],["You can specify the maximum number of records to return using the `pageSize` parameter and use `pageToken` for retrieving subsequent pages."],["Filtering is supported using the `filter` parameter with fields like `space.meeting_code`, `space.name`, `start_time`, and `end_time`."],["The response body includes a list of conference records and a `nextPageToken` for pagination."],["Authorization requires specific OAuth scopes related to meetings space creation or read access."]]],["This document outlines how to list conference records using a `GET` request to `https://meet.googleapis.com/v2/conferenceRecords`. Optional query parameters include `pageSize` (maximum 100), `pageToken` for pagination, and `filter` for conditions based on meeting code, space name, start time, and end time. The request body must be empty. The response body includes an array of `conferenceRecords` and a `nextPageToken` for subsequent requests. Authorization requires specific OAuth scopes.\n"]]