Attribution Result

    Get attributed results by Device UUID.

    The Attribution Result API can receive AIRBRIDGE-API-KEY and AIRBRIDGE-SDK-TOKEN as authorization headers. When using AIRBRIDGE-API-KEY, use the API Token, and when using AIRBRIDGE-SDK-TOKEN, use the SDK Token.

    An example of the call is shown below.

    1
    curl -H "Authorization: AIRBRIDGE-API-KEY {API-TOKEN}" https://api.airbridge.io


    Get Attribution Result

    GET

    https://api.airbridge.io/attribution-result/v1/apps/{app_name}/mobile-app

    Get attribution results for mobile devices using device_uuid

    Request

    Headers

    Accept-Language
    string

    您可指定用于 API 请求和结果返回的语言。遵守 ISO-639-1 格式。

    Content-Type
    string

    表示资源的媒体类型。默认使用 application/json。

    Authorization
    string

    用于 API 请求的键值。

    Path Params

    app_name
    Requiredstring

    Airbridge App 名称(App Name)

    Query Params

    device_uuid
    Requiredstring

    Device UUID from Android or iOS.
    This is the device UUID obtained through the app SDK. Please refer to the guides below to learn how to get it for each OS.

    Request
    1234
    curl -X GET 'https://api.airbridge.io/attribution-result/v1/apps/{app_name}/mobile-app?device_uuid=f3fab994-baea-4b52-b190-5f023b6ae638' \
      -H 'Accept-Language: ko' \
      -H 'Content-Type: application/json' \
      -H 'Authorization: Bearer {AIRBRIDGE-API-TOKEN}'

    Response

    200SUCCESS

    204SUCCESS

    400ERROR

    401ERROR

    Response
    123456789101112131415
    {
      "at": "2023-01-01T09:30:00.123Z",
      "data": {
        "attributedTerm": null,
        "attributedAdGroup": "TEST_ADGROUP",
        "attributedChannel": "website",
        "attributedContent": null,
        "attributedCampaign": "TEST_CAMPAIGN",
        "attributedAdCreative": "TEST_ADCREATIVE",
        "attributedSubPublisher": null,
        "attributedSubSubPublisher1": null,
        "attributedSubSubPublisher2": null,
        "attributedSubSubPublisher3": null
      }
    }

    Was this page helpful?

    Have any questions or suggestions?