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
messageConversionData{// The duration for which the conversion data is added below.messageCollectionDuration{// 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.Datedate=1;}CollectionDurationduration=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.ConversionSourceconversion_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.int32num_transactions=4;// Number of visits to the partner's landing page from Google products. These// visits may or may not have had a transaction.int32num_visits=5;reserved3;}
[[["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-31 UTC."],[[["Conversion feeds should be uploaded in JSON format, despite being defined in protobuffer."],["The `ConversionDataFeed` message includes an array of `ConversionData` for the most recent 30 days."],["Each `ConversionData` entry specifies the data collection `duration` via a date, the `conversion_source` URL, the number of `num_transactions`, and `num_visits`."],["The `CollectionDuration` specifies the exact date in UTC, ranging from 00:00 to 23:59."],["The `ConversionSource` is the URL that was provided in the Merchant/Service feed and is where the conversion occurred."]]],["The provided content outlines the structure for a Conversion Data Feed, which tracks user interactions originating from Google links. This feed contains `ConversionData`, detailing `CollectionDuration` with a specific `date` using UTC. Each entry is linked to a `ConversionSource` identified by a `url`. The feed tracks the `num_transactions` and `num_visits` resulting from these links. While defined in protobuf format, JSON format is recommended for uploading. Data covers the last 30 days.\n"]]