Google Vault API & Integrations
Google Vault API
There might be scenarios where you would like to integrate Google Vault with your other systems, or maybe you need a way to programmatically perform certain actions in Vault, and that’s where you can leverage Vault API.
You can perform CRUD (create, retrieve, update, delete) operations via Vault API, below are a few references to common operations you perform via API
- Get a list of all accounts which are on hold by making a GET call to Vault’s API-:
GET https://vault.googleapis.com/v1/matters/{matterId}/holds/{holdId}/accounts - Put account/s on hold by making a POST call to Vault’s API
POST https://vault.googleapis.com/v1/matters/{matterId}/holds/{holdId}:addHeldAccounts - Add a given user to the matter as collaborator by making a POST call to to Vault’s API-:
POST https://vault.googleapis.com/v1/matters/{matterId}:addPermissions
Please see Google’s documentation for a complete list of resources and methods available in the API at https://developers.google.com/vault/reference/rest
Related Posts
....