Stay organized with collections
Save and categorize content based on your preferences.
An action link provides the ability for users to interact with a deep link
which links out to the partner's website to perform an action. Deep links
are displayed on the merchant's knowledge panel. This guide will describe how
to add action links to the feeds.
Merchant level action links
You should provide an action link via the Merchant feeds when all services
for a given merchant redirects the user to the same landing page on the
partner's website.
The type of action must be specified using the ActionLinkType which is part of
ActionLink
in the merchants feed.
[[["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 2025-05-20 UTC."],[[["\u003cp\u003eThis guide explains how partners integrating with Actions Center Reservations Business Link can add action links to their feeds.\u003c/p\u003e\n"],["\u003cp\u003eAction links, displayed on merchant knowledge panels, are deep links directing users to the partner's website for actions like ordering food or booking appointments.\u003c/p\u003e\n"],["\u003cp\u003eMerchant-level action links are used when all services for a merchant lead to the same landing page on the partner's website.\u003c/p\u003e\n"],["\u003cp\u003eThe \u003ccode\u003eActionLinkType\u003c/code\u003e specifies the type of action associated with the link, such as ordering food or making a reservation.\u003c/p\u003e\n"],["\u003cp\u003eImplementing services feeds for new integrations is not recommended; existing integrations should refer to legacy documentation for maintenance.\u003c/p\u003e\n"]]],["Partners integrating with the Actions Center Reservations Business Link add action links to merchant feeds. These links, displayed on the merchant's knowledge panel, direct users to the partner's website for specific actions. Each merchant can have one action link per `ActionLinkType`, which specifies the action type (e.g., booking, ordering, reservations). `ActionLinkType` options include booking appointments, ordering food (delivery/takeout), making dining reservations, or shopping online. Action links should lead to a location-specific page where users complete the action.\n"],null,["# Specify action links\n\n| **Note:** This guide only applies to partners who are integrating with the Actions Center Reservations Business Link 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/reservations/bl/reference/feeds/merchants-feed#ActionLink-definition) (e.g.: food ordering or making a dining reservation ). 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/reservations/bl/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/reservations/bl/reference/feeds/merchants-feed#ActionLink-definition)\n\nin the merchants feed. \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)."]]