GET
https://api.airbridge.io/dataspec/v1/apps/{app_name}/revenue-report/groupbys
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/v1/apps/{app_name}/revenue-report/groupbys' \
-H 'Accept-Language: ko' \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer {AIRBRIDGE-API-TOKEN}'
Response
200
404
입력한 필드에 오류가 있거나 해당하는 리소스가 없습니다.{
"data": [
{
"name": "Event Details",
"fields": [
{
"key": "is_first_event_per_user_id",
"name": "Is First Event per User ID",
"description": "Boolean type data to show whether the event has happened in the past. (per user id)\n- true: First Event. \n- false: Not the First Event\n\n(Both Web/App Event Available)",
"example": "true",
"isFilter": true,
"type": "boolean",
"isCost": false
},
{
"key": "is_first_event_per_device_id",
"name": "Is First Event per Device ID",
"description": "Boolean type data to show whether the event has happened in the past. (per airbridge device id)\n- true: First Event. \n- false: Not the First Event\n\n(App Event Available Only)",
"example": "true",
"isFilter": true,
"type": "boolean",
"isCost": false
}
]
},
{
"name": "Touchpoint",
"fields": [
{
"key": "channel",
"name": "Channel",
"description": "The media source of the touchpoint.",
"example": "moloco",
"isFilter": true,
"type": "string",
"isCost": true
},
{
"key": "campaign",
"name": "Campaign",
"description": "The campaign that generated the touchpoint. The campaign name entered in SAN or collected by the campaign parameter of the tracking link.",
"example": "2018_summer_campaign",
"isFilter": true,
"type": "string",
"isCost": true
}
]
}
]
}
{
"type": "about:blank",
"title": "Not Found",
"status": 404,
"traceId": "1-000000-000000000000000"
}