Cyclr · Schema

Cyclr Installed Connector

An installed connector is an instance of a Cyclr connector that has been deployed into a specific account. It holds account-level authentication credentials and configuration for the connector.

ConnectorsCustom ConnectorsData SynchronizationEmbedded iPaaSEmbedded SaaS IntegrationEmbedded UIIntegration PlatformIntegrationsMarketplaceOAuth 2.0REST APISaaSTemplatesWebhooksWhite LabelWorkflows

Properties

Name Type Description
Id integer Installed connector identifier
Name string Installed connector name
Description string Installed connector description
ConnectorId integer Reference to the base connector
Authenticated boolean Whether the connector has been authenticated
Status string Installation status
View JSON Schema on GitHub

JSON Schema

cyclr-installed-connector.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/cyclr/refs/heads/main/json-schema/cyclr-installed-connector.json",
  "title": "Cyclr Installed Connector",
  "description": "An installed connector is an instance of a Cyclr connector that has been deployed into a specific account. It holds account-level authentication credentials and configuration for the connector.",
  "type": "object",
  "properties": {
    "Id": {
      "type": "integer",
      "description": "Installed connector identifier"
    },
    "Name": {
      "type": "string",
      "description": "Installed connector name"
    },
    "Description": {
      "type": "string",
      "description": "Installed connector description"
    },
    "ConnectorId": {
      "type": "integer",
      "description": "Reference to the base connector"
    },
    "Authenticated": {
      "type": "boolean",
      "description": "Whether the connector has been authenticated"
    },
    "Status": {
      "type": "string",
      "description": "Installation status"
    }
  },
  "required": ["Id", "ConnectorId"]
}