Prerequisites
- A Google Cloud project
- A GCS bucket
- A service account with
storage.objects.getandstorage.objects.listroles - A service account JSON key
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Connect FlexOrch to a GCS bucket.
storage.objects.get and storage.objects.list rolescurl -X POST https://api.flexorch.com/v1/connectors \
-H "X-API-KEY: dfx_your_key_here" \
-H "Content-Type: application/json" \
-d '{
"type": "gcs",
"name": "my-gcs-connector",
"config": {
"project_id": "my-gcp-project",
"bucket": "my-documents",
"credentials_json": "{\"type\": \"service_account\", ...}"
}
}'
| Field | Required | Description |
|---|---|---|
project_id | Yes | GCP project ID |
bucket | Yes | GCS bucket name |
credentials_json | Yes | Service account key JSON (as string) |
prefix | No | Default key prefix for scheduled sync |