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.
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' }],
},
});