# Google Slides Integration via LowCodeAPI

## Overview

Google Slides API creates and modifies presentation slides.

## Base Endpoint

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

**Auth Type**: OAuth2.0

## Common Endpoints

### Create Presentation

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

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

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

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