v1

latestOpenAPI 3.1.02026-07-263644911022.4 KB
Catalog API

Get a Catalog Executor

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

get/v1/catalog/executors/{id}

Path parameters

idstring required

Unique identifier of the catalog executor.

Response

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

categorystring

Functional category of the executor.

idstring

Unique identifier of the executor.

namestring

Display name of the executor.

providerIdstring

ID of the provider this executor belongs to.

schemastring

JSON Schema defining the expected configuration for this executor.

versionstring

Version of the executor.

Example response

{
  "category": "HTTP",
  "id": "http",
  "name": "HTTP Request",
  "schema": "{\"type\":\"object\",\"properties\":{\"method\":{\"type\":\"string\"},\"url\":{\"type\":\"string\"}}}",
  "version": "v1"
}