Action Feed
Stay organized with collections
Save and categorize content based on your preferences.
outlined_flag
The Action feed spec is defined in protobuffer format but JSON format is recommended for uploads.
You can find JSON sample feeds for reference.
The ActionFeed
contains repeated ActionDetail
messages.
The ActionDetail
includes entity_id
, link_id
, a deep link url
, and repeated Action
messages.
Definitions
Note: The Action feed spec is defined in protobuffer format below,
however we recommend uploading the feeds in JSON format. You can reference
our JSON sample feeds for more information.
ActionFeed Definition
message ActionFeed {
repeated ActionDetail data = 1 ;
}
ActionDetail Definition
message ActionDetail {
string entity_id = 2 ;
string link_id = 3 ;
// Deep link for action detail
string url = 4 ;
repeated Action actions = 1 ;
}
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License , and code samples are licensed under the Apache 2.0 License . For details, see the Google Developers Site Policies . Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2025-10-14 UTC.
[null,null,["Last updated 2025-10-14 UTC."],[],["The `ActionFeed` is defined using a protobuffer format but should be uploaded in JSON. It contains a repeated list of `ActionDetail` objects. Each `ActionDetail` includes an `entity_id`, `link_id`, a deep link `url`, and a list of `Action` objects. The JSON format is recommended, with sample feeds available for reference.\n"]]