Method: matters.holds.list

Lists the holds in a matter.

HTTP request

GET https://vault.googleapis.com/v1/matters/{matterId}/holds

The URL uses gRPC Transcoding syntax.

Path parameters

Parameters
matterId

string

The matter ID.

Query parameters

Parameters
pageSize

integer

The number of holds to return in the response, between 0 and 100 inclusive. Leaving this empty, or as 0, is the same as pageSize = 100.

pageToken

string

The pagination token as returned in the response. An empty token means start from the beginning.

view

enum (HoldView)

The amount of detail to return for a hold.

Request body

The request body must be empty.

Response body

The holds for a matter.

If successful, the response body contains data with the following structure:

JSON representation
{
  "holds": [
    {
      object (Hold)
    }
  ],
  "nextPageToken": string
}
Fields
holds[]

object (Hold)

The list of holds.

nextPageToken

string

Page token to retrieve the next page of results in the list. If this is empty, then there are no more holds to list.

Authorization scopes

Requires one of the following OAuth scopes:

  • https://www.googleapis.com/auth/ediscovery.readonly
  • https://www.googleapis.com/auth/ediscovery

For more information, see the Authorization guide.