Method: matters.exports.list
HTTP リクエスト
GET https://vault.googleapis.com/v1/matters/{matterId}/exports
この URL は gRPC Transcoding 構文を使用します。
パスパラメータ
パラメータ |
matterId |
string
案件 ID。
|
クエリ パラメータ
パラメータ |
pageSize |
integer
レスポンスで返すエクスポートの数。
|
pageToken |
string
レスポンスで返されたページ設定トークン。
|
リクエストの本文
リクエストの本文は空にする必要があります。
レスポンスの本文
案件のエクスポート。
成功した場合、レスポンスの本文には次の構造のデータが含まれます。
JSON 表現 |
{
"exports": [
{
object (Export )
}
],
"nextPageToken": string
} |
フィールド |
exports[] |
object (Export )
エクスポートのリスト。
|
nextPageToken |
string
リスト内の次のページの結果を取得するページトークン。
|
認可スコープ
以下のいずれかの OAuth スコープが必要です。
https://www.googleapis.com/auth/ediscovery.readonly
https://www.googleapis.com/auth/ediscovery
詳細については、OAuth 2.0 Overview をご覧ください。
特に記載のない限り、このページのコンテンツはクリエイティブ・コモンズの表示 4.0 ライセンスにより使用許諾されます。コードサンプルは Apache 2.0 ライセンスにより使用許諾されます。詳しくは、Google Developers サイトのポリシーをご覧ください。Java は Oracle および関連会社の登録商標です。
最終更新日 2025-02-27 UTC。
[null,null,["最終更新日 2025-02-27 UTC。"],[[["Lists all the exports associated with a specific matter within Google Vault."],["Allows for pagination to retrieve large sets of exports using `pageSize` and `pageToken`."],["Returns an empty request body and a response containing a list of exports and a `nextPageToken`."],["Requires specific OAuth scopes for authorization, such as `ediscovery.readonly` or `ediscovery`."],["Provides a structured JSON representation for the response data, including details about each export."]]],["This document details retrieving exports for a specified matter using a `GET` request to `https://vault.googleapis.com/v1/matters/{matterId}/exports`. Key actions include setting the `matterId` path parameter and optional `pageSize` and `pageToken` query parameters for pagination. The request body must be empty. The successful response contains a JSON object with an array of `exports` and a `nextPageToken` for further results. The operation requires specific authorization scopes, either `ediscovery.readonly` or `ediscovery`.\n"]]