Koleksiyonlar ile düzeninizi koruyun
İçeriği tercihlerinize göre kaydedin ve kategorilere ayırın.
İşlem bağlantısı, kullanıcıların bir işlem gerçekleştirmek için iş ortağının web sitesine yönlendiren derin bir bağlantıyla etkileşime geçmesine olanak tanır. Derin bağlantılar satıcının bilgi panelinde gösterilir. Bu kılavuzda, feed'lere nasıl işlem bağlantıları ekleneceği açıklanmaktadır.
Satıcı düzeyinde işlem bağlantıları
Belirli bir satıcının tüm hizmetleri kullanıcıyı iş ortağının web sitesindeki aynı açılış sayfasına yönlendirdiğinde satıcı feed'leri aracılığıyla bir işlem bağlantısı sağlamanız gerekir.
İşlem türü, satıcı feed'inde ActionLink bölümündeki ActionLinkType kullanılarak belirtilmelidir.
[null,null,["Son güncelleme tarihi: 2025-07-26 UTC."],[[["\u003cp\u003eThis guide is specifically for partners integrating with the Actions Center Reservations Business Link integration.\u003c/p\u003e\n"],["\u003cp\u003eAction links, displayed on merchant knowledge panels, enable user interaction via deep links to partner websites.\u003c/p\u003e\n"],["\u003cp\u003eMerchant-level action links should be used when all services for a merchant direct to the same partner landing page.\u003c/p\u003e\n"],["\u003cp\u003eThe \u003ccode\u003eActionLinkType\u003c/code\u003e in the Merchants feed specifies the type of action associated with the link (e.g., ordering food, booking appointments).\u003c/p\u003e\n"],["\u003cp\u003eServices feeds implementation is not recommended for new integrations; existing integrations should refer to the 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,["# Specifying 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)."]]