EngagementConversionsReport

Retrieves Engagement conversions data.

Select

The adapter uses the Google Analytics API to process WHERE clause conditions built with the following columns and operators:

  • PropertyId supports the following operator: =
  • EventName supports the following operator: =
  • Date supports the following operators: =,>=,<=,<,>

For example, the following queries are processed server-side:

SELECT * FROM EngagementConversionsReport WHERE PropertyId = 342020667
SELECT * FROM EngagementConversionsReport WHERE EventName = 'page_view' 
SELECT * FROM EngagementConversionsReport WHERE Date = '01/05/2023' 
SELECT * FROM EngagementConversionsReport WHERE PropertyId = 342020667  AND EventName = 'page_view' and Date = '01/05/2023'
SELECT * FROM EngagementConversionsReport WHERE Date >= '01/01/2022' AND <= '01/05/2023'
SELECT * FROM EngagementConversionsReport WHERE Date >= '01/01/2022'
SELECT * FROM EngagementConversionsReport WHERE Date <= '01/01/2022'
SELECT * FROM EngagementConversionsReport WHERE Date >  '01/01/2022'
SELECT * FROM EngagementConversionsReport WHERE Date < '01/01/2022'
The rest of the filter is executed client-side in the adapter.

Columns

Name TypeDimensionDefaultMetricDefaultDimensionDescription
EventName StringTrue True The name of the event.
Date DateTrue True The date of the session formatted as YYYYMMDD.
Conversions IntegerFalse True The count of conversion events.
EventCountPerUser DecimalFalse True Average number of events triggered by each user.
EventCount IntegerFalse True The count of events.
TotalRevenue IntegerFalse True The sum of revenue from purchases, subscriptions, and advertising.
TotalUsers IntegerFalse True The number of distinct users who visited the site or app.

Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.

Name Type Description
PropertyId StringProperty ID value to be used when querying this table.