Method: matters.holds.removeHeldAccounts

Removes the specified accounts from a hold. Returns a list of statuses in the same order as the request.

HTTP request

POST https://vault.googleapis.com/v1/matters/{matterId}/holds/{holdId}:removeHeldAccounts

The URL uses gRPC Transcoding syntax.

Path parameters

Parameters
matterId

string

The matter ID.

holdId

string

The hold ID.

Request body

The request body contains data with the following structure:

JSON representation
{
  "accountIds": [
    string
  ]
}
Fields
accountIds[]

string

The account IDs of the accounts to remove from the hold.

Response body

Response for batch delete held accounts.

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

JSON representation
{
  "statuses": [
    {
      object (Status)
    }
  ]
}
Fields
statuses[]

object (Status)

A list of statuses for the deleted accounts. Results have the same order as the request.

Authorization scopes

Requires the following OAuth scope:

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

For more information, see the Authorization guide.