Integrations

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.

Method
Path
Operation ID
Purpose

GET

/api/integrations

getIntegrationPreviews

Lists every integration registered on this platform (IntegrationPreviewList of {id, name, description, installed}). The installed flag is always false on every response — see the caveat below.

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 (see the platform_url caveat below).

On a stock platform build GET /api/integrations returns { "items": [] }. The manifests that populate the registry are loaded from META-INF/wizard/*.yaml on the classpath, and the platform ships none — they arrive only through external classpath overlays. An empty list means no manifests were supplied, not that the endpoint failed. The registry mechanism is described on the Integration Wizard feature page.

Two further behaviours are documented in depth on the Integration Wizard feature page and apply equally when you call these endpoints directly: the staticValue of platform_url falls back to the placeholder http://your.odd.platform when odd.platform-base-url is unset, and neither endpoint carries a per-resource permission (any authenticated user — or any caller under auth.type=DISABLED — can read the full registry, including the rendered platform_url).

See also

Last updated