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

# replies_create

> Create a reply to a comment. Send `content`, or an `action` of `resolve` or `reopen`. `content` is required if no `action` is specified.

<div className="tool-route"><span className="tool-row-method" data-method="POST">POST</span><code>{"https://www.googleapis.com/drive/v3/files/{fileId}/comments/{commentId}/replies"}</code></div>

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

result = await gdrive.replies_create.ainvoke({"fileId": ..., "commentId": ..., "reply": ...})
```

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

## Body

<div className="reference-table">
  | Field                                                         | Type                                                 | Description          |
  | ------------------------------------------------------------- | ---------------------------------------------------- | -------------------- |
  | `reply` <span className="required" title="required">\*</span> | [Reply](/charter/charter/packs/gdrive/replies/objects#reply) | The reply to create. |
</div>
