v1

latestOpenAPI 3.1.02026-07-263644911022.4 KB
Catalog API

Get a Catalog Provider

Use this endpoint to retrieve the metadata and JSON Schema of a specific catalog provider.

get/v1/catalog/providers/{id}

Path parameters

idstring required

Unique identifier of the catalog provider.

Response

Indicates that the request was successful and the response contains the requested data.

configSchemastring

JSON Schema defining the expected configuration for this provider.

descriptionstring

Description of the provider's capabilities.

idstring

Unique identifier of the provider.

namestring

Display name of the provider.

versionstring

Provider version.

Example response

{
  "configSchema": "{\"type\":\"object\",\"properties\":{\"baseUrl\":{\"type\":\"string\"},\"apiKey\":{\"type\":\"string\"}}}",
  "description": "Built-in HTTP connector for REST API integrations",
  "id": "lerian-builtin",
  "name": "Lerian Built-in",
  "version": "1.0.0"
}