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