API Reference
List catalog integration slugs (cardamom)
Cardamom connectors only. Returns up to 100 integration slugs from the file catalog ( integrations dir ) or Clove ( clove url ) for the Connect picker.
GET /api/connectors/{id}/catalog-integrations
Cardamom connectors only. Returns up to 100 integration slugs from the
file catalog (integrations_dir) or Clove (clove_url) for the Connect picker.
Operation ID: listConnectorCatalogIntegrations
Authentication
Option 1
- BearerAuth (
http bearer) API key token. Create via POST /api/api-keys. Format:envoy_<hex>
Option 2
- CookieAuth (
apiKey) Session cookie set after login + TOTP verification
Path parameters
id—integer,requiredResource ID
Success responses
200
Catalog integration summaries
Content type: application/json
- Type:
object - Properties:
result(array<object>,required)- Items:
- Type:
object - Properties:
slug(string,required)label(string)
- Type:
- Items:
Error responses
400
Not a cardamom connector
404
Resource not found
Content type: application/json
- Reference:
Error- Type:
object - Properties:
error(string)- Example:
NOT_FOUND
- Example:
message(string)- Example:
Resource not found
- Example:
- Type:
Example:
{
"error": "NOT_FOUND",
"message": "Resource not found"
}500
Catalog list failed
Examples
cURL
curl --request GET \
--url 'https://your-envoy.example.com/api/connectors/YOUR_ID/catalog-integrations' \
--header 'Authorization: Bearer $API_KEY'JavaScript (fetch)
const response = await fetch('https://your-envoy.example.com/api/connectors/YOUR_ID/catalog-integrations', {
method: 'GET',
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
},
});
if (!response.ok) throw new Error(`Request failed: ${response.status}`);
const data = response.status === 204 ? null : await response.json();
console.log(data);