> ## Documentation Index
> Fetch the complete documentation index at: https://docs.semicola.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Cloud drives

> Which cloud drives Semicola can take files from, and how to ask for the ones that are not available yet.

Cloud drives are file sources: a place to pick briefs, images, videos and review material from, instead
of uploading them from your computer. They're separate from ad platform connections: a cloud drive never
grants access to an ad account, a storefront or a sales agent.

<Note>
  No cloud drive import is available yet. Google Drive import in the Semi composer and in creative
  bulk upload needs a Google app registration first, so it isn't offered. Upload files from your
  computer (local files, folders and zip archives) in the meantime.
</Note>

## Ask for a cloud drive

**Connections → Cloud drives** ("Request the cloud drive file sources your team wants us to add.")
lists the drives that aren't available yet: Microsoft OneDrive, Dropbox and Box. Each shows **Not
available yet** until you ask for it, then **Requested**. Asking records your organization's interest
("Thanks - your interest has been recorded."); it creates no connection and grants Semicola no access
to that provider.

Over REST:

```bash theme={null}
curl -X POST "https://api.semicola.com/api/v2/cloud-drive-connections/requests" \
  -H "Authorization: Bearer $SEMICOLA_API_KEY" \
  -H "X-Account-Id: $ACCOUNT_ID" \
  -H "Content-Type: application/json" \
  -d '{ "integration": "dropbox" }'
```

| Field         | Notes                                                               |
| ------------- | ------------------------------------------------------------------- |
| `integration` | `microsoft-onedrive`, `dropbox` or `box`.                           |
| `surface`     | Where the request came from: `connections` (default) or `composer`. |

The response is the request: `integration`, `status` (`requested`, `live` or `canceled`) and
`requestedAt`. `GET /api/v2/cloud-drive-connections/requests` lists your account's requests. Asking
twice for the same drive keeps one request.

## Related

* [Connections](/buy/connections)
* [Creatives](/buy/creatives)
