Retrieve connector configuration metadata
Returns metadata of configuration parameters and authorization parameters for a specified connector type.
Request schema
Path parameters
The connector type identifier within the Fivetran system
Header parameters
HTTP: basicAuth
HTTP AuthorizationScheme: basic
GET /v1/metadata/connector-types/google_ads HTTP/1.1
Accept: application/json;version=2
Authorization: Basic REPLACE_BASIC_AUTH
Host: api.fivetran.com
Responses
Successful response schema
Response status code
Response status text
The connector type identifier within the Fivetran system
The connector service name within the Fivetran system
The connector service type
The description characterizing the purpose of the connector
The set of additional icon resource URLs in different formats (.svg, .png). Updating this list is not a breaking change. The set of icon URLs or the icons themselves may be changed
Metadata for configuration fields
Metadata for authorization fields (optional)
The date (yyyy-MM-dd) the connector status was updated to the current availability status
The unique identifier of a feature supported by the connector
Additional information about the feature support of a specific connector
The link to the connector documentation
The link to the connector ERD (entity–relationship diagram)
The current availability status of the connector
The icon resource URL
{
"code": "Success",
"message": "Operation performed.",
"data": {
"id": "google_ads",
"name": "Google Ads",
"type": "Marketing",
"description": "Google Ads is an online advertising platform",
"icons": [
"string"
],
"config": {},
"auth": {},
"service_status_updated_at": "2019-08-24T14:15:22Z",
"supported_features": [
{
"id": "API_CONFIGURABLE",
"notes": "..."
}
],
"link_to_docs": "https://fivetran.com/docs/connectors/applications/google-ads",
"connector_class": "standard",
"link_to_erd": "https://docs.google.com/presentation/d/1f16zOPxwT1AXoOcNkvwT82ApKqU1yhtJ04f-73M91nw/embed",
"service_status": "general_availability",
"icon_url": "https://fivetran.com/integrations/google_ads/resources/google-ads.png"
}
}