Apifuse · JSON Structure

Apifuse Connector Structure

A pre-built connector for a specific platform in Apifuse.

Type: object Properties: 4
Embedded IntegrationsIntegration PlatformIntegrationsiPaaSMarketplaceSaaSWorkflow Automation

Connector is a JSON Structure definition published by Apifuse, describing 4 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

id name category authType

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/apifuse/refs/heads/main/json-structure/apifuse-connector-structure.json",
  "description": "A pre-built connector for a specific platform in Apifuse.",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier of the connector.",
      "example": "conn-salesforce"
    },
    "name": {
      "type": "string",
      "description": "Display name of the connector.",
      "example": "Salesforce"
    },
    "category": {
      "type": "string",
      "description": "Category of the connector.",
      "example": "CRM"
    },
    "authType": {
      "type": "string",
      "enum": [
        "oauth2",
        "apikey",
        "basic"
      ],
      "description": "Authentication type used by this connector."
    }
  },
  "name": "Connector"
}