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.test

Run a health check against a configured integration connection.

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

    Run a health check against a configured integration connection.

  • 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

    Run a health check against a configured integration connection.

    Goal

    Validate credentials and connectivity for external providers.

    Context

    Triggered manually or by background monitors to confirm provider availability.

    Source Definition

    export const TestIntegrationConnection = defineCommand({
      meta: {
        key: 'integrations.connection.test',
        title: 'Test Integration Connection',
        version: '1.0.0',
        description:
          'Run a health check against a configured integration connection.',
        goal: 'Validate credentials and connectivity for external providers.',
        context:
          'Triggered manually or by background monitors to confirm provider availability.',
        owners: ['@platform.integrations'],
        tags: ['integration', 'connections'],
        stability: 'experimental',
      },
      io: {
        input: TestIntegrationConnectionInput,
        output: TestIntegrationConnectionOutput,
      },
      policy: {
        auth: 'admin',
        policies: [{ key: 'platform.integration.manage', version: '1.0.0' }],
      },
    });