Equals (is, =)
Does not equal (is not, ≠).
In
Not in
Value exists
Value does not exist
Less than
Less than or equals
Greater than
Greater than or equals
Between
Airbridge's data export feature allows you to select and extract raw data from your marketing campaigns into a .csv file. Begin exporting via [Raw Data > Data Export]. Raw Data Export is available for App and Web in a separate section.
https://api.airbridge.io/log-export/api/v3/apps/{app_name}/{type}/request
Request a Raw Data Export.
Equals (is, =)
Does not equal (is not, ≠).
In
Not in
Value exists
Value does not exist
Less than
Less than or equals
Greater than
Greater than or equals
Between
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"]}'
{
"dateRange": {
"start": "2023-01-01 01:00:00",
"end": "2023-01-07 01:00:00"
},
"events": [
"app_install"
],
"properties": [
"channel"
]
}
{
"at": 1541410684717,
"data": {
"reportID": 2500
}
}
{
"type": "about:blank",
"title": "Not Found",
"status": 404,
"traceId": "1-000000-000000000000000"
}
https://api.airbridge.io/log-export/api/v3/apps/{app_name}/request/{report_id}
Gets the URL where the results of the raw data export can be downloaded.
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}'
{
"data": {
"url": "https://ab180-athena.s3.amazonaws.com/workgroup/..."
}
}
このページは役に立ちましたか?
{
"at": 1541410684717,
"data": {
"reportID": 2500
}
}
{
"type": "about:blank",
"title": "Not Found",
"status": 404,
"traceId": "1-000000-000000000000000"
}
{
"data": {
"url": "https://ab180-athena.s3.amazonaws.com/workgroup/..."
}
}