Get connectors

GET /api/connectors

Get all connectors in the current tenant.

Query parameters

  • target string

    Filter connectors by target.

Responses

GET /api/connectors
curl \
 -X GET https://[tenant_id].logto.app/api/connectors
Response examples (200)
[
  {
    "id": "string",
    "syncProfile": true,
    "config": {},
    "metadata": {
      "target": "string",
      "name": {},
      "logo": "string",
      "logoDark": "string"
    },
    "connectorId": "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,
    "type": "Email",
    "isDemo": true,
    "extraInfo": {
      "key": null
    },
    "usage": 42.0
  }
]