애드캐시 매출 조회
앱의 매출 내역을 조회할 수 있도록 제공된 API를 통해 완료해야 하는 설정에 대해 알아보세요.
API
파트너사 -> 아바티
GET https://api.roulette.avatye.com/sales/adCash/search
Request Parameter
Header
header
type
description
Authorization
String
Basic 유형의 토큰값 Basic base64{{app_id}:app_secret}} "app_id", "app_secret"값은 영업 담당자를 통해 전달 받으세요.
Query
query
type
description
searchBeginDate
String
검색 시작 날짜 : 2022-01-01
searchEndDate
String
검색 종료 날짜 : 2022-01-07
placementID
String
지면 ID
Response
http status code
response(json)
description
200
placementID
지면 ID
date
날짜(KST)
actionDateTime
매출 집계 시간(UTC)
appID
appID
click
광고 참여 숫자
impression
광고 노출 숫자
CTR
클릭률
revenue
매출
[
{
"placementID": "70378f38-e396-469e-ad47-595b84c2ca1e",
"date": "2022-11-13",
"actionDateTime": "2022-11-12T15:00:00.000Z",
"appID": "57548790fc7a4de7ad0defad8c38d754",
"click": 1396,
"impression": 82839,
"CTR": 1,
"revenue": 30039
},
{
"placementID": "70378f38-e396-469e-ad47-595b84c2ca1e",
"date": "2022-11-14",
"actionDateTime": "2022-11-13T15:00:00.000Z",
"appID": "57548790fc7a4de7ad0defad8c38d754",
"click": 1477,
"impression": 101073,
"CTR": 1,
"revenue": 34339
},
{
"placementID": "70378f38-e396-469e-ad47-595b84c2ca1e",
"date": "2022-11-15",
"actionDateTime": "2022-11-14T15:00:00.000Z",
"appID": "57548790fc7a4de7ad0defad8c38d754",
"click": 1304,
"impression": 86799,
"CTR": 2,
"revenue": 28067
},
{
"placementID": "70378f38-e396-469e-ad47-595b84c2ca1e",
"date": "2022-11-16",
"actionDateTime": "2022-11-15T15:00:00.000Z",
"appID": "57548790fc7a4de7ad0defad8c38d754",
"click": 1194,
"impression": 84925,
"CTR": 1,
"revenue": 26903
},
{
"placementID": "70378f38-e396-469e-ad47-595b84c2ca1e",
"date": "2022-11-17",
"actionDateTime": "2022-11-16T15:00:00.000Z",
"appID": "57548790fc7a4de7ad0defad8c38d754",
"click": 1091,
"impression": 81388,
"CTR": 1,
"revenue": 25002
},
{
"placementID": "70378f38-e396-469e-ad47-595b84c2ca1e",
"date": "2022-11-18",
"actionDateTime": "2022-11-17T15:00:00.000Z",
"click": 0,
"impression": 0,
"CTR": 0,
"revenue": 0
},
{
"placementID": "70378f38-e396-469e-ad47-595b84c2ca1e",
"date": "2022-11-19",
"actionDateTime": "2022-11-18T15:00:00.000Z",
"click": 0,
"impression": 0,
"CTR": 0,
"revenue": 0
}
]
Last updated