Get connector factories
Get all connector factories data available in Logto.
GET /api/connector-factories
curl \
-X GET https://[tenant_id].logto.app/api/connector-factories \
-H "Authorization: Bearer $ACCESS_TOKEN"
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
}
],
"customData": {},
"fromEmail": "string",
"platform": "Native",
"isStandard": true
}
]