> ## 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.

# revisions_get

> Get a revision'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/files/{fileId}/revisions/{revisionId}"}</code></div>

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

result = await gdrive.revisions_get.ainvoke({"fileId": ..., "revisionId": ...})
```

<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             |
  | ------------------------------------------------------------------ | -------- | ----------------------- |
  | `fileId` <span className="required" title="required">\*</span>     | `string` | The ID of the file.     |
  | `revisionId` <span className="required" title="required">\*</span> | `string` | The ID of the revision. |
</div>

## Query parameters

<div className="reference-table">
  | Field              | Type      | Description                                                                                                                                                                                                                                                             |
  | ------------------ | --------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
  | `acknowledgeAbuse` | `boolean` | Whether the user is acknowledging the risk of downloading known malware or other abusive files. This is only applicable when the `alt` parameter is set to `media` and the user is the owner of the file or an organizer of the shared drive in which the file resides. |
</div>
