原始数据

    您可以通过 Airbridge 的数据导出功能,从营销活动中选择并提取原始数据,导出为 .csv 文件。请在 [原始数据 > 数据导出] 进行导出, 应用和网页均设有单独的原始数据导出板块。


    申请原始数据导出

    POST

    https://api.airbridge.io/log-export/api/v3/apps/{app_name}/{type}/request

    申请原始数据导出。

    Request

    Body Params

    dateRange
    Requiredobject

    设置数据导出时段。

    events
    Requiredstring[]

    要提取的事件。(应用事件键网页事件键)

    properties
    Requiredstring[]

    要提取的属性。(应用事件属性网页事件属性

    filters
    object[]

    提供'分组依据'功能项的筛选器。

    Request
    12
    curl -X POST 'https://api.airbridge.io/log-export/api/v3/apps/{app_name}/{type}/request' \
      -d '{"dateRange":{"start":"2023-01-01 01:00:00","end":"2023-01-07 01:00:00"},"events":["app_install"],"properties":["channel"]}'
    Payload
    123456789101112
    {
      "dateRange": {
        "start": "2023-01-01 01:00:00",
        "end": "2023-01-07 01:00:00"
      },
      "events": [
        "app_install"
      ],
      "properties": [
        "channel"
      ]
    }

    Response

    200SUCCESS

    404ERROR

    Response
    123456
    {
      "at": 1541410684717,
      "data": {
        "reportID": 2500
      }
    }

    导出原始数据

    GET

    https://api.airbridge.io/log-export/api/v3/apps/{app_name}/request/{report_id}

    获取可下载原始数据导出结果的 URL。

    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)

    Request
    1234
    curl -X GET 'https://api.airbridge.io/log-export/api/v3/apps/{app_name}/request/{report_id}' \
      -H 'Accept-Language: ko' \
      -H 'Content-Type: application/json' \
      -H 'Authorization: Bearer {AIRBRIDGE-API-TOKEN}'

    Response

    200SUCCESS

    Response
    12345
    {
      "data": {
        "url": "https://ab180-athena.s3.amazonaws.com/workgroup/..."
      }
    }

    Was this page helpful?

    Have any questions or suggestions?