Tetap teratur dengan koleksi
Simpan dan kategorikan konten berdasarkan preferensi Anda.
Link tindakan memungkinkan pengguna berinteraksi dengan deep link
yang tertaut ke situs partner untuk melakukan tindakan. Deep link
ditampilkan di panel info penjual. Panduan ini akan menjelaskan cara
menambahkan link tindakan ke feed.
Action_link tingkat penjual
Anda harus memberikan link tindakan melalui feed Penjual jika semua layanan
untuk penjual tertentu mengalihkan pengguna ke halaman landing yang sama di
situs partner.
Jenis tindakan harus ditentukan menggunakan ActionLinkType yang merupakan bagian dari
ActionLink
di feed penjual.
[null,null,["Terakhir diperbarui pada 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)."]]