OSS-first docs

These docs teach the open system first: contracts, generated surfaces, runtimes, governance, and incremental adoption. Studio shows up as the operating layer on top, not as the source of truth.

integrations.connection.create

Create a new integration connection for a tenant.

  • Type: operation (command)
  • Version: 1.0.0
  • Stability: experimental
  • Owners: @platform.integrations
  • Tags: integration, connections
  • field.key.label
    integrations.connection.create
    field.version.label
    1.0.0
    field.type.label
    operation (command)
    field.title.label
    integrations.connection.create
    field.description.label

    Create a new integration connection for a tenant.

  • Type: operation (command)
  • Version: 1.0.0
  • Stability: experimental
  • Owners: @platform.integrations
  • Tags: integration, connections
  • field.tags.label
    integration,connections
    field.owners.label
    @platform.integrations
    field.stability.label
    experimental

    Create a new integration connection for a tenant.

    Goal

    Provision a tenant-scoped connection to an external provider.

    Context

    Used by Ops or the App Studio to configure external integrations such as Stripe or Qdrant.

    Source Definition

    export const CreateIntegrationConnection = defineCommand({
      meta: {
        key: 'integrations.connection.create',
        title: 'Create Integration Connection',
        version: '1.0.0',
        description: 'Create a new integration connection for a tenant.',
        goal: 'Provision a tenant-scoped connection to an external provider.',
        context:
          'Used by Ops or the App Studio to configure external integrations such as Stripe or Qdrant.',
        owners: ['@platform.integrations'],
        tags: ['integration', 'connections'],
        stability: 'experimental',
      },
      io: {
        input: CreateIntegrationConnectionInput,
        output: IntegrationConnectionRecord,
      },
      policy: {
        auth: 'admin',
        policies: [{ key: 'platform.integration.manage', version: '1.0.0' }],
      },
    });