# Third-Party Storage Connectors

The ERP can store files in several cloud providers through pluggable connectors. Each connector requires specific API credentials which are configured in `config/storage.php`.

## Dropbox
- `access_token` &ndash; OAuth token with file access permissions.

## Google Drive
- `access_token` &ndash; OAuth token or service account token for the Drive API.
- `folder_id` &ndash; ID of the folder used for uploads.

## OneDrive
- `access_token` &ndash; OAuth token for Microsoft Graph.
- `drive_id` &ndash; Target drive identifier (`me` for the user's default drive).

Set the `driver` key in `config/storage.php` to one of the above names to activate the connector.
