Skip to main content
GET
/
v1
/
catalog
/
triggers
/
{id}
Get a Catalog Trigger
curl --request GET \
  --url https://flowker.sandbox.lerian.net/v1/catalog/triggers/{id} \
  --header 'X-API-Key: <api-key>'
{
  "id": "webhook",
  "name": "Webhook",
  "schema": "{\"type\":\"object\",\"properties\":{\"method\":{\"type\":\"string\",\"enum\":[\"POST\"]}}}",
  "version": "v1"
}

Authorizations

X-API-Key
string
header
required

API key for authenticating requests to the Flowker API. Provisioned via the API_KEY environment variable during deployment.

Path Parameters

id
string
required

Unique identifier of the catalog trigger.

Response

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

id
string

Unique identifier of the trigger.

Example:

"webhook"

name
string

Display name of the trigger.

Example:

"Webhook"

schema
string

JSON Schema defining the expected configuration for this trigger.

Example:

"{\"type\":\"object\",\"properties\":{\"method\":{\"type\":\"string\",\"enum\":[\"POST\"]}}}"

version
string

Trigger version.

Example:

"v1"