Data Feed Connections
Service-provider connections used by data feeds (Salesforce, GA4, etc.).
A data feed connection is a service-provider connection used by data feeds. Read-only: only GET is exposed.
Full field reference (types, enums, required/read-only flags) is generated from components.schemas.DataFeedConnection in the API Reference tab, and tabulated field by field in Field Reference — or fetch the live OpenAPI document directly, see Getting Started for the URL.
GET /data_feed_connections · GET /data_feed_connections/:connectionId
GET /data_feed_connections · GET /data_feed_connections/:connectionIdThe list endpoint accepts an optional queryBuilderService query parameter that filters the results to connections backed by that query builder service. To obtain the possible values for the queryBuilderService filter call the /query_builder/services endpoint.
GET /data_feed_connections?queryBuilderService=GoogleAnalytics4
{
"id": "cd882b55c245465e93857cd331cb3ffa",
"name": "Marketing GA4",
"serviceProvider": { "name": "Google Analytics 4", "serviceKey": "c3po_gaV4" },
"state": { "key": "ACTIVE" },
"version": "1.0"
}state.key is one of ACTIVE, REVOKED, or DISABLED.
serviceProvider.serviceKey identifies the service the connection was created against; Service Providers lists every provider and its key.
Updated 6 days ago