v1

latestOpenAPI 3.1.02026-07-263644911022.4 KB
Catalog API

Get a Catalog Trigger

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

get/v1/catalog/triggers/{id}

Path parameters

idstring required

Unique identifier of the catalog trigger.

Response

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

idstring

Unique identifier of the trigger.

namestring

Display name of the trigger.

schemastring

JSON Schema defining the expected configuration for this trigger.

versionstring

Trigger version.

Example response

{
  "id": "webhook",
  "name": "Webhook",
  "schema": "{\"type\":\"object\",\"properties\":{\"method\":{\"type\":\"string\",\"enum\":[\"POST\"]}}}",
  "version": "v1"
}