Get connector factory

GET /api/connector-factories/{id}

Get connector factory by the given ID.

Path parameters

  • id string Required

    The unique identifier of the connector factory.

Responses

GET /api/connector-factories/{id}
curl \
 -X GET https://[tenant_id].logto.app/api/connector-factories/{id}
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
}