Add links to your Event ticket

There are four ways to add links to a event ticket.

  • Use EventClass.LinksModuleData to add links to all event tickets that are associated with the EventClass.
  • Use EventObject.LinksModuleData to add a link to a specific event ticket EventObject.
  • Use EventObject.appLinkData to place an app link at the bottom of that particular Pass.
  • Use EventClass.appLinkData to place an app link at the bottom of all the passes of that class.

One benefit of app linking is that it empowers your call-to-action to navigate users to your branded experiences from Google Wallet. Links with this feature appear at the bottom of the Pass.

App Applink Data Example Web Applink Data Example

For a given event ticket, set the field EventObject.appLinkData to the URI or Package name of your app or website.

See the format and context of the appLinkData field in the following source code (Coming soon) :

  {
    "id": string,
    "classId": string,
    …
    …
    …
    "appLinkData": {
      "androidAppLinkInfo": {
        "appTarget": {
          "packageName": "com.google.android.gm",
        }
      },
      "webAppLinkInfo": {
        "appTarget": {
           "targetUri": {
              "uri": "https://mail.google.com/mail/",
              "description": "Web link for Gmail"
           }
        }
     }
    }
  }
For posterity the following implementation will also work.
{
  "id": string,
  "classId": string,
  …
  …
  …
  "appLinkData": {
    "androidAppLinkInfo": {
      "appTarget": {
        "targetUri": {
          "uri": "https://play.google.com/store/apps/details?id=com.google.android.gm",
            "description": "Play store link for Gmail app"
        }
      }
    }
  }
}