Aktionslinks angeben

Mit einem Aktionslink können Nutzer mit einem Deeplink interagieren, der auf die Website des Partners verweist, um eine Aktion auszuführen. Deeplinks werden im Knowledge Panel des Händlers angezeigt. In diesem Leitfaden wird beschrieben, wie du den Feeds Aktionslinks hinzufügst.

Du solltest über die Händlerfeeds einen Aktionslink angeben, wenn der Nutzer von allen Dienstleistungen eines bestimmten Händlers auf dieselbe Landingpage auf der Website des Partners weitergeleitet wird.

Der Typ der Aktion muss mit ActionLinkType angegeben werden.

Für die Integration der Weiterleitung von Terminen muss „ActionLinkType“ auf ACTION_LINK_TYPE_BOOK_APPOINTMENT festgelegt sein.

  // Predetermined type of action associated with an action link.
  enum ActionLinkType {
    // 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;
  }

Wenn ein Dienst über einen speziellen Weiterleitungslink verfügt, sollten Sie über die Dienstleistungsfeeds einen Aktionslink bereitstellen.

Für die Integration der Weiterleitung von Terminen muss „ActionLinkType“ auf ACTION_LINK_TYPE_BOOK_APPOINTMENT festgelegt sein.

Die Art der Aktion muss mit ActionLinkType angegeben werden. Diese ist Teil von ActionLink im Dienstleistungsfeed.

  // Predetermined type of action associated with an action link.
  enum ActionLinkType {
    // 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;
  }