# Google Docs Integration via LowCodeAPI

## Overview

Google Docs API creates and modifies Google Docs documents.

## Base Endpoint

```
https://api.lowcodeapi.com/googledocs/
```

**Auth Type**: OAuth2.0

## Common Endpoints

### Create Document

**Method**: `POST` | **LowCodeAPI Path**: `/v1/documents`

**Full URL**:
```
https://api.lowcodeapi.com/googledocs/v1/documents?api_token={api_token}
```

**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/googledocs/v1/documents?api_token=YOUR_API_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"title": "My New Document"}'
```

**Official Documentation**: [https://developers.google.com/docs](https://developers.google.com/docs)