Try API Request
GET
https://api.airbridge.io/dataspec/v2/apps/{app_name}/actual-report/fields
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/fields' \
-H 'Accept-Language: ko' \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer {AIRBRIDGE-API-TOKEN}'
Response
200
404
입력한 필드에 오류가 있거나 해당하는 리소스가 없습니다.{
"data": [
{
"fields": [
{
"key": "event_date",
"name": "Event Date",
"example": "2019-05-31",
"description": "이벤트 발생 날짜와 시간 (YYYY-MM-DD)",
"serveToFilter": true
},
{
"key": "event_year",
"name": "Event Year",
"example": "2019",
"description": "이벤트 발생 년도",
"serveToFilter": true
},
{
"key": "event_month",
"name": "Event Month",
"example": "04",
"description": "이벤트 발생 월",
"serveToFilter": true
}
],
"groupName": "Event Datetime",
"parentGroupName": null
},
{
"fields": [
{
"key": "event_source",
"name": "Event Source",
"example": "App",
"description": "Event가 발생한 소스",
"serveToFilter": true
},
{
"key": "event_type",
"name": "Event Type",
"example": "Impression",
"description": "Event 타입",
"serveToFilter": true
},
{
"key": "event_category",
"name": "Event Category",
"example": "Move to App Store (Link)",
"description": "Event 카테고리",
"serveToFilter": true
}
],
"groupName": "Event Hierarchy",
"parentGroupName": null
},
{
"fields": [
{
"key": "channel",
"name": "Channel",
"example": "moloco",
"description": "Touchpoints 와 Conversion이 발생한 Channel\n",
"serveToFilter": true
},
{
"key": "campaign",
"name": "Campaign",
"example": "2018_summer_campaign",
"description": "Touchpoints 와 Conversion이 발생한 Campaign \n(SAN Publisher 대시보드에서 입력한 값 또는 Tracking Link의 캠페인 파라미터 값)",
"serveToFilter": true
}
],
"groupName": "Touchpoint",
"parentGroupName": null
}
]
}
{
"type": "about:blank",
"title": "Not Found",
"status": 404,
"traceId": "1-000000-000000000000000"
}