[null,null,["最后更新时间 (UTC):2025-07-26。"],[[["\u003cp\u003eThis guide applies exclusively to partners integrating with the Actions Center Local Services Ads Redirect integration.\u003c/p\u003e\n"],["\u003cp\u003eAction links, displayed on merchant knowledge panels, allow users to interact with deep links to perform actions on the partner's website.\u003c/p\u003e\n"],["\u003cp\u003ePartners should provide a merchant-level action link when all services for a merchant redirect to the same landing page.\u003c/p\u003e\n"],["\u003cp\u003eThe \u003ccode\u003eActionLinkType\u003c/code\u003e should be set to \u003ccode\u003eACTION_LINK_TYPE_BOOK_APPOINTMENT\u003c/code\u003e for the Local Services Ads Redirect integration.\u003c/p\u003e\n"],["\u003cp\u003eImplementing services feeds is not recommended for new integrations; existing integrations can refer to legacy documentation for maintenance.\u003c/p\u003e\n"]]],["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"],null,["# Specify action links\n\n| **Note:** This guide only applies to partners who are integrating with the Actions Center Local Services Ads Redirect integration.\n\nAn action link provides the ability for users to interact with a deep link\nwhich links out to the partner's website to perform an action. Deep links\nare displayed on the merchant's knowledge panel. This guide will describe how\nto add action links to the feeds.\n\nMerchant level action links\n---------------------------\n\nYou should provide an action link via the Merchant feeds when all services\nfor a given merchant redirects the user to the same landing page on the\npartner's website.\n| **Note:** Currently, only one action link is displayed for a single merchant on the merchant knowledge panel for a particular [`ActionLinkType`](/actions-center/verticals/local-services/redirect/reference/feeds/merchants-feed#ActionLink-definition) (e.g.: making an appointment for in-person or online ). The action link should link to a page for the specific location where a user can complete the designated action for the [`ActionLinkType`](/actions-center/verticals/local-services/redirect/reference/feeds/merchants-feed#ActionLink-definition) .\n\nThe type of action must be specified using the `ActionLinkType` which is part of\n\n[`ActionLink`](/actions-center/verticals/local-services/redirect/reference/feeds/merchants-feed#ActionLink-definition)\n\nin the merchants feed.\n\nThe `ActionLinkType` should be set to `ACTION_LINK_TYPE_BOOK_APPOINTMENT` for the Local Services Ads Redirect integration. \n\n```gdscript\n // Predetermined type of action associated with an action link.\n enum ActionLinkType {\n // The action link type is unspecified.\n ACTION_LINK_TYPE_UNSPECIFIED = 0;\n\n // The action link type is booking an appointment.\n ACTION_LINK_TYPE_BOOK_APPOINTMENT = 1;\n\n // The action link type is booking an online appointment.\n ACTION_LINK_TYPE_BOOK_ONLINE_APPOINTMENT = 2;\n\n // The action link type is ordering food for delivery or takeout or both.\n ACTION_LINK_TYPE_ORDER_FOOD = 3;\n\n // The action link type is ordering food for delivery.\n ACTION_LINK_TYPE_ORDER_FOOD_DELIVERY = 4;\n\n // The action link type is ordering food for takeout.\n ACTION_LINK_TYPE_ORDER_FOOD_TAKEOUT = 5;\n\n // The action link type is making a dining reservation.\n ACTION_LINK_TYPE_MAKE_DINING_RESERVATION = 6;\n\n // The action link type allows users to shop from the given merchant. It\n // could either be delivery or pickup.\n ACTION_LINK_TYPE_SHOP_ONLINE = 7;\n }\n```\n\nServices level action links\n---------------------------\n\n| **Warning:** It is now not recommended to implement services feeds for new integrations. If you are looking to maintain your existing integration, follow [this legacy documentation](/actions-center/legacy/tutorials/tutorial-specifying-action-links)."]]