Try API Request
GET
https://api.airbridge.io/dataspec/v2/apps/{app_name}/actual-report/metrics
Request
Headers
string
API 요청 및 결과 반환에 사용할 언어를 지정할 수 있습니다. ISO-639-1 포맷을 따릅니다.
string
리소스의 미디어 타입을 나타냅니다. 기본값으로
application/json을 사용합니다.string
API 요청에 사용하는 키값입니다. 키값 생성 및 조회 방법을 확인하여 획득할 수 있습니다.
Path Params
string
필수
에어브릿지 앱 이름(App Name)
curl -X GET 'https://api.airbridge.io/dataspec/v2/apps/{app_name}/actual-report/metrics' \
-H 'Accept-Language: ko' \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer {AIRBRIDGE-API-TOKEN}'
Response
200
404
입력한 필드에 오류가 있거나 해당하는 리소스가 없습니다.{
"data": [
{
"fields": [
{
"key": "touchpoints_impression_click",
"name": "Touchpoints (Impression+click)",
"description": "Impression 수와 Click 수의 합"
},
{
"key": "impressions",
"name": "Impressions",
"description": "Impression 수"
},
{
"key": "clicks",
"name": "Clicks",
"description": "Click 수"
}
],
"groupName": "Touchpoint",
"parentGroupName": "Touchpoint"
},
{
"fields": [
{
"key": "app_events",
"name": "Events (App)",
"description": "앱에서 발생한 이벤트 수"
},
{
"key": "app_event_value",
"name": "Event 값 (App)",
"description": "앱에서 발생한 이벤트 값의 합"
}
],
"groupName": "App Event",
"parentGroupName": "App"
},
{
"fields": [
{
"key": "app_installs",
"name": "Installs (App)",
"description": "Install 수"
},
{
"key": "app_first_installs",
"name": "First Installs (App)",
"description": "최초로 설치된 Install 수"
}
],
"groupName": "App Install",
"parentGroupName": "App"
},
{
"fields": [
{
"key": "app_sign_up",
"name": "회원가입 (App)",
"description": "앱에서 발생한 회원가입 이벤트 수"
},
{
"key": "app_sign_in",
"name": "로그인 (App)",
"description": "앱에서 로그인 이벤트 수"
},
{
"key": "app_sign_out",
"name": "로그아웃 (App)",
"description": "앱에서 로그아웃 이벤트 수"
}
],
"groupName": "App Standard Event",
"parentGroupName": "App"
}
]
}
{
"type": "about:blank",
"title": "Not Found",
"status": 404,
"traceId": "1-000000-000000000000000"
}