Retrieve source metadata
Returns all available source types within your Fivetran account. This endpoint makes it easier to display Fivetran connectors within your application because it provides metadata including the proper source name ('Facebook Ads' instead of 'facebook_ads'), the source icon, information about the Hybrid deployment support, and links to Fivetran resources. As we update source names and icons, that metadata will automatically update within this endpoint
Request schema
Query parameters
The paging cursor. Read more about pagination in our documentation
The number of records to fetch per page, accepts a number in the range 1..1000. The default value is 100
Header parameters
HTTP: basicAuth
HTTP AuthorizationScheme: basic
GET /v1/metadata/connector-types?cursor=ug5DFer4rnd7sl&limit=100 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 collection of return items
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
The value of the cursor parameter for the next page
{
"code": "Success",
"message": "Operation performed.",
"data": {
"items": [
{
"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"
}
],
"nextCursor": "cursor_value"
}
}