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

# documents_create

> Create a blank document with a title. Only the title is honoured — the document is created empty. To add content, call this and then documents_batch_update with the returned documentId.

<div className="tool-route"><span className="tool-row-method" data-method="POST">POST</span><code>{"https://docs.googleapis.com/v1/documents"}</code></div>

```python gdocs_documents_create.py theme={null}
from charter.packs import gdocs

result = await gdocs.documents_create.ainvoke({})
```

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

## Body

<div className="reference-table">
  | Field  | Type                                                                    | Description                                         |
  | ------ | ----------------------------------------------------------------------- | --------------------------------------------------- |
  | `body` | [DocumentsCreateBody](/charter/charter/packs/gdocs/objects#documentscreatebody) | The document to create. Only the title is honoured. |
</div>
