Method: conferenceRecords.list
会議レコードを一覧表示します。デフォルトでは、開始時間の降順で並べ替えられます。
HTTP リクエスト
GET https://meet.googleapis.com/v2/conferenceRecords
この URL は gRPC Transcoding 構文を使用します。
クエリ パラメータ
パラメータ |
pageSize |
integer
省略可。返される会議レコードの最大数。サービスはこの値よりも少ない値を返すことがあります。指定しない場合、最大で 25 件の会議レコードが返されます。最大値は 100 です。100 を超える値は 100 に強制変換されます。上限は今後変更される可能性があります。
|
pageToken |
string
省略可。前回のリスト呼び出しから返されたページトークン。
|
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
|
リクエスト本文
リクエストの本文は空にする必要があります。
レスポンスの本文
conferenceRecords.list メソッドのレスポンス。
成功した場合、レスポンスの本文には次の構造のデータが含まれます。
JSON 表現 |
{
"conferenceRecords": [
{
object (ConferenceRecord )
}
],
"nextPageToken": string
} |
フィールド |
conferenceRecords[] |
object (ConferenceRecord )
会議の一覧を 1 ページに表示。
|
nextPageToken |
string
現在のリストにすべてのカンファレンスが含まれていない場合に、今後のリスト呼び出しのために循環されるトークン。すべての会議が返された場合は未設定にします。
|
認可スコープ
次の OAuth スコープのいずれかが必要です。
https://www.googleapis.com/auth/meetings.space.created
https://www.googleapis.com/auth/meetings.space.readonly
詳細については、承認ガイドをご覧ください。
特に記載のない限り、このページのコンテンツはクリエイティブ・コモンズの表示 4.0 ライセンスにより使用許諾されます。コードサンプルは Apache 2.0 ライセンスにより使用許諾されます。詳しくは、Google Developers サイトのポリシーをご覧ください。Java は 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"]]