> ## Documentation Index
> Fetch the complete documentation index at: https://docs.r28.ai/charter/llms.txt
> Use this file to discover all available pages before exploring further.

# drives_get

> Get a shared drive's metadata by ID.

<div className="tool-route"><span className="tool-row-method" data-method="GET">GET</span><code>{"https://www.googleapis.com/drive/v3/drives/{driveId}"}</code></div>

```python gdrive_drives_get.py theme={null}
from charter.packs import gdrive

result = await gdrive.drives_get.ainvoke({"driveId": ...})
```

<Note>
  Requires `https://www.googleapis.com/auth/drive`. Costs 1 against the provider's own quota.
</Note>

## Path parameters

<div className="reference-table">
  | Field                                                           | Type     | Description                 |
  | --------------------------------------------------------------- | -------- | --------------------------- |
  | `driveId` <span className="required" title="required">\*</span> | `string` | The ID of the shared drive. |
</div>

## Query parameters

<div className="reference-table">
  | Field                  | Type      | Description                                                                                                                                                                          |
  | ---------------------- | --------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
  | `useDomainAdminAccess` | `boolean` | Issue the request as a domain administrator; if set to true, then the requester will be granted access if they are an administrator of the domain to which the shared drive belongs. |
</div>
