equal
Equals (is, =)
not_equal
Does not equal (is not, ≠).
in
In
not_in
Not in
exist
Value exists
not_exist
Value does not exist
lt
Less than
lte
Less than or equals
gt
Greater than
gte
Greater than or equals
between
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.
rate limit: 100 requests per day.
equal
Equals (is, =)
not_equal
Does not equal (is not, ≠).
in
In
not_in
Not in
exist
Value exists
not_exist
Value does not exist
lt
Less than
lte
Less than or equals
gt
Greater than
gte
Greater than or equals
between
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.
You can specify the language to use for API requests and responses. It follows the ISO-639-1 format.
Represents the media type of the resource. Defaults to application/json
.
The key value to use for API requests. Instructions for getting API keys are in "how to generate API Keys".
Airbridge App Name. (Unique ID)
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/..."
}
}