Googleapis Vault
googleapis-vault is a generated connector for Google Vault, which manages retention, search, export, and eDiscovery for Google Workspace data.
- Base URL:
https://vault.googleapis.com - Auth: OAuth 2.0 (user-delegated) — attach an InTouch
oauthcredential. Mint one withitcli.py /oauth <provider>(device-code) or/google-auth(Google); the server auto-refreshes the access token before each run, so the connector never handles or stores tokens.
Operations
vault_matters_list— GET /v1/matters — Lists matters the requestor has access to.vault_matters_get— GET /v1/matters/{matterId} — Gets the specified matter.vault_matters_exports_list— GET /v1/matters/{matterId}/exports — Lists details about the exports in the specified matter.vault_matters_exports_get— GET /v1/matters/{matterId}/exports/{exportId} — Gets an export.vault_matters_holds_list— GET /v1/matters/{matterId}/holds — Lists the holds in a matter.vault_matters_holds_get— GET /v1/matters/{matterId}/holds/{holdId} — Gets the specified hold.
Inputs
- a linked
oauthcredential (no key inputs) — the server injects a freshAuthorization: Bearerfrom it operation— one of the operations above- path parameters when an operation's path contains
{...} query— optional JSON object of query paramsbody— JSON object for create/update ops
Example
operation: vault_matters_list
# (attach an 'oauth' credential to the task — no inline secrets)
Publishes
The keys a later task may reference as {{taskName.key}}. Referencing anything not listed here resolves to nothing at run time.
erroroperationresultstatus
Input Properties
Every property this tool accepts, from its own tool.iml.
| Property | Type | Required | Default | Description |
|---|---|---|---|---|
operation |
string | yes | — | One of: vault_matters_list, vault_matters_get, vault_matters_exports_list, vault_matters_exports_get, vault_matters_holds_list, vault_matters_holds_get |
exportId |
string | no | — | Path parameter exportId (required by some operations). |
holdId |
string | no | — | Path parameter holdId (required by some operations). |
matterId |
string | no | — | Path parameter matterId (required by some operations). |
query |
string | no | — | Optional query params as a JSON object string, e.g. {"limit": 10}. |