Stay organized with collections
Save and categorize content based on your preferences.
ConversionDataFeed Definition
message ConversionDataFeed {
// Conversion data for last 30 days.
repeated ConversionData data = 1;
}
ConversionData Definition
message ConversionData {
// The duration for which the conversion data is added below.
message CollectionDuration {
// Duration is the specified date i.e 00:00 to 23:59 on the given date.
// Note: UTC timezone should be used to delineate which transactions fall on
// which dates. (required)
// Example: Date { year:2020 month:10 day 8) represents October 8th, 2020.
google.type.Date date = 1;
}
CollectionDuration duration = 1;
// The source link in Google surface from which the conversions happened.
// Note: All the data in this ConversionData message is for the conversions
// which originated from this source.
ConversionSource conversion_source = 2;
// Number of transactions from users starting on links shown in Google
// products. Examples of transactions are appointments, reservations, orders
// etc performed by the user.
int32 num_transactions = 4;
// Number of visits to the partner's landing page from Google products. These
// visits may or may not have had a transaction.
int32 num_visits = 5;
reserved 3;
}
ConversionSource Definition
message ConversionSource {
// Link from which the conversion happened. Note: The link here should be the
// same link which was sent as part of the Merchant / Service feed.
string url = 1;
}
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-10-09 UTC."],[[["The Conversion feed, ideally uploaded in JSON format, outlines conversion data for the past 30 days."],["Each `ConversionData` entry includes the date, source link, transaction count, and visit count for conversions originating from a specific Google surface link."],["`ConversionSource` identifies the specific link on the Google surface that led to the conversions detailed in the `ConversionData`."],["The feed utilizes `CollectionDuration` to specify the 24-hour period (in UTC) for which the conversion data is being reported."]]],[]]