Especifica vínculos de acción
Organiza tus páginas con colecciones
Guarda y categoriza el contenido según tus preferencias.
Un vínculo de acción permite que los usuarios interactúen con un vínculo directo que dirige al sitio web del socio para realizar una acción. Los vínculos directos se muestran en el panel de conocimiento del comercio. En esta guía, se describe cómo agregar vínculos de acción a los feeds.
Vínculos de acción a nivel del comercio
Debes proporcionar un vínculo de acción a través de los feeds de Merchant Center cuando todos los servicios de un comercio determinado redireccionen al usuario a la misma página de destino en el sitio web del socio.
El tipo de acción se debe especificar con el ActionLinkType que forma parte de ActionLink en el feed de comercios.
ActionLinkType debe establecerse en ACTION_LINK_TYPE_BOOK_APPOINTMENT para la integración de redireccionamiento de anuncios de Servicios Locales.
// Predetermined type of action associated with an action link.enumActionLinkType{// The action link type is unspecified.ACTION_LINK_TYPE_UNSPECIFIED=0;// The action link type is booking an appointment.ACTION_LINK_TYPE_BOOK_APPOINTMENT=1;// The action link type is booking an online appointment.ACTION_LINK_TYPE_BOOK_ONLINE_APPOINTMENT=2;// The action link type is ordering food for delivery or takeout or both.ACTION_LINK_TYPE_ORDER_FOOD=3;// The action link type is ordering food for delivery.ACTION_LINK_TYPE_ORDER_FOOD_DELIVERY=4;// The action link type is ordering food for takeout.ACTION_LINK_TYPE_ORDER_FOOD_TAKEOUT=5;// The action link type is making a dining reservation.ACTION_LINK_TYPE_MAKE_DINING_RESERVATION=6;// The action link type allows users to shop from the given merchant. It// could either be delivery or pickup.ACTION_LINK_TYPE_SHOP_ONLINE=7;}
[[["Fácil de comprender","easyToUnderstand","thumb-up"],["Resolvió mi problema","solvedMyProblem","thumb-up"],["Otro","otherUp","thumb-up"]],[["Falta la información que necesito","missingTheInformationINeed","thumb-down"],["Muy complicado o demasiados pasos","tooComplicatedTooManySteps","thumb-down"],["Desactualizado","outOfDate","thumb-down"],["Problema de traducción","translationIssue","thumb-down"],["Problema con las muestras o los códigos","samplesCodeIssue","thumb-down"],["Otro","otherDown","thumb-down"]],["Última actualización: 2026-03-26 (UTC)"],[],["Partners integrating with Actions Center Local Services Ads Redirect use action links in merchant feeds to direct users to their website. When all services for a merchant share the same landing page, a merchant-level action link should be provided. The `ActionLinkType`, specifying the action, must be included, and for this integration, it should be set to `ACTION_LINK_TYPE_BOOK_APPOINTMENT`. Only one action link per `ActionLinkType` is displayed per merchant. The services feed is not recommended for new integrations.\n"]]