DeepLink - Migrating From Other Links

    You can continue using your UTM parameters or links for data collection you have created from other solutions to gather campaign data into Airbridge. You don't need to edit your existing links. Read on to learn how to migrate from links other than Airbridge tracking links to measure campaigns using Airbridge.

    Parsing UTM Parameters

    Through parsing URLs, the UTM parameters embedded in URLs can be automatically converted to Airbridge campaign parameters, allowing you to collect data and measure campaign performance using Airbridge.

    The UTM parameter values are automatically collected as the campaign parameter values according to the mapping table below.

    The campaign parameters that are mapped to the UTM parameters can also be found in the [Tracking Link]>[Link Generation] menu.

    Required settings, parameters, and more

    Mapping URL Query Parameters to Airbridge Campaign Parameters

    Through URL query parameter mapping, you can view the data collected by the query parameters of your existing URL in Airbridge reports.

    Required settings, parameters, and more

    By using urlQueryMapping, you can custom map other parameters to Airbridge campaign parameters to view the data in Airbridge reports. When calling the airbridge.init function, add urlQueryMapping and input key (Airbridge parameter) : value (Non-Airbridge parameter) pairs. The table below lists the Airbridge parameters that can be used as keys.

    Let's say the landing page of your ad looks like the following.

    • https://mybrand.com/?utm_source=google&utm_campaign=jan_ua_campaign&internal_code=ABC

    The parameter values can be mapped to Airbridge parameters using urlQueryMapping so that the data can be viewed in the Airbridge reports, as shown in the example below.

    12345678910
    airbridge.init({
        app: '<YOUR_APP_NAME>',
        webToken: '<YOUR_WEB_TOKEN>',
        // ...
        urlQueryMapping: {
            channel: 'utm_source',
            campaign: 'utm_campaign',
            sub_id_1: 'my_sub_id',
        },
    })

    For example, if a conversion happens, the internal_code parameter value will be available in the Airbridge report by setting the GRoupBy as "Sub Sub Publisher 1."

    Was this helpful?

    Any questions or suggestions?