Copy the prompt
In the console, open Sources → New source → Airbyte and click Copy agent prompt. The prompt is pre-filled with your tenant id. Paste it into your coding agent and tell it which source to connect (for example, “Snowflake” or “GitHub”). The agent will ask you for three values before it starts:SPLENDOR_API_BASE— your API base URL.SPLENDOR_TENANT_ID— your tenant id (pre-filled in the copied prompt).SPLENDOR_TOKEN— a tenant-admin bearer token, or a platform API key scoped to this tenant.
What the agent does
The prompt drives the same endpoints as Connect a source, in order:Checks support
Searches
GET /v1/admin/airbyte-catalog for the connector and stops if it isn’t available.Inspects the connector
Calls
POST /v1/admin/airbyte-catalog/{source_definition_id}/discover to read the credential spec and OAuth mode, and summarizes what’s required.Registers the source
Calls
POST /v1/admin/airbyte-sources with the source_definition_id, source_type, destination bucket, and the streams you choose.Authenticates
For OAuth connectors it hands you a consent URL and finishes via
oauth/complete; for credential connectors it provisions with the credentials you supply.Classifies fields
Calls
POST /v1/admin/airbyte-sources/{id}/discover-schema, proposes which fields are document text, vocabulary, or filters, and applies the classification with PUT /v1/admin/sources/{id} after you approve.