Get connector factories

GET /api/connector-factories

Get all connector factories data available in Logto.

Responses

GET /api/connector-factories
curl \
 -X GET https://[tenant_id].logto.app/api/connector-factories
Response examples (200)
[
  {
    "type": "Email",
    "isDemo": true,
    "id": "string",
    "target": "string",
    "name": {},
    "description": {},
    "logo": "string",
    "logoDark": "string",
    "readme": "string",
    "configTemplate": "string",
    "formItems": [
      {
        "type": "string",
        "selectItems": [
          {
            "value": "string",
            "title": "string"
          }
        ],
        "key": "string",
        "label": "string",
        "placeholder": "string",
        "required": true,
        "showConditions": [
          {
            "targetKey": "string"
          }
        ],
        "description": "string",
        "tooltip": "string",
        "isConfidential": true
      }
    ],
    "platform": "Native",
    "isStandard": true
  }
]