Integrations
Integration Wizard HTTP endpoints — list registered integrations and fetch their content blocks plus code snippets.
Last updated
Integration Wizard HTTP endpoints — list registered integrations and fetch their content blocks plus code snippets.
The Integration Wizard's UI is the in-app consumer of two endpoints exposed by IntegrationController.java; you can call them directly to script integration-snippet generation. For the wizard purpose, the META-INF/wizard/*.yaml manifest registry, static-parameter substitution (today only platform_url), and the wizard-vs-collector_config.yaml boundary, see the Integration Wizard page.
GET
/api/integrations
getIntegrationPreviews
Lists every integration registered on this platform (IntegrationPreviewList of {id, name, description, installed}). The installed flag is currently always false — it's a UI affordance reserved for future state-tracking.
GET
/api/integrations/{integration_id}
getIntegration
Returns the full Integration overview: the preview plus the ordered list of content blocks (each with title, content, and code snippets). Snippet arguments carry parameter, name, type (INTEGER / STRING / BOOLEAN / FLOAT), isStatic, and — when static — staticValue resolved server-side.
API Reference hub — the full per-feature index.
Integration Wizard — feature description, manifest registry, static-parameter substitution.
Last updated