This repository was archived by the owner on Nov 30, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
This repository was archived by the owner on Nov 30, 2022. It is now read-only.
Update ConnectionSystemTypeMap Endpoint to return Human-Readable Version #1096
Copy link
Copy link
Closed
Labels
Description
Is your feature request related to a specific problem?
In our connection type endpoint (which returns the types of connectors we support out of the box), return a version of the connection with proper casing. We currently only return our internal identifier, not a version that has the proper casing of the service.
For example, we have "hubspot", but we also would like "HubSpot".
GET "/connection_type"
{
"items": [
{
"identifier": "bigquery",
"type": "database"
},
{
"identifier": "mariadb",
"type": "database"
},
{
"identifier": "mongodb",
"type": "database"
},
{
"identifier": "mssql",
"type": "database"
},
{
"identifier": "mysql",
"type": "database"
},
{
"identifier": "postgres",
"type": "database"
},
{
"identifier": "redshift",
"type": "database"
},
{
"identifier": "snowflake",
"type": "database"
},
{
"identifier": "adobe_campaign",
"type": "saas"
},
{
"identifier": "auth0",
"type": "saas"
},
{
"identifier": "datadog",
"type": "saas"
},
{
"identifier": "hubspot",
"type": "saas"
},
{
"identifier": "mailchimp",
"type": "saas"
},
{
"identifier": "outreach",
"type": "saas"
},
{
"identifier": "salesforce",
"type": "saas"
},
{
"identifier": "segment",
"type": "saas"
},
{
"identifier": "sendgrid",
"type": "saas"
},
{
"identifier": "sentry",
"type": "saas"
},
{
"identifier": "stripe",
"type": "saas"
},
{
"identifier": "zendesk",
"type": "saas"
}
],
"total": 21,
"page": 1,
"size": 50
}Describe the solution you'd like
- Start storing a human readable version of this, this could be an enum, it could be stored in the yaml, etc., for both database and saas connectors.
- Start returning this information in the connection type endpoint
Describe alternatives you've considered, if any
A description of any alternative solutions or features you've considered.
Additional context
Add any other context or screenshots about the feature request here.