Skip to main content
GET
/
v1
/
catalog
/
providers
/
{id}
Get a Catalog Provider
curl --request GET \
  --url https://flowker.sandbox.lerian.net/v1/catalog/providers/{id} \
  --header 'X-API-Key: <api-key>'
{
  "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"
}

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 provider.

Response

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

configSchema
string

JSON Schema defining the expected configuration for this provider.

Example:

"{\"type\":\"object\",\"properties\":{\"baseUrl\":{\"type\":\"string\"},\"apiKey\":{\"type\":\"string\"}}}"

description
string

Description of the provider's capabilities.

Example:

"Built-in HTTP connector for REST API integrations"

id
string

Unique identifier of the provider.

Example:

"lerian-builtin"

name
string

Display name of the provider.

Example:

"Lerian Built-in"

version
string

Provider version.

Example:

"1.0.0"