브라우저 상세 별 재생 수, 재생시간을 조회합니다.
패키지 또는 동영상의 선택이 없는 경우 계정 내 모든 동영상을 조회하며, 특정 패키지 또는 동영상을 선택 시 해당 데이터만 조회합니다.
브라우저 별 재생 조회 API를 통해 받은 응답에서 “브라우저”를 확인 후 해당 “브라우저”를 요청 파라미터로 설정하면 해당 브라우저의 데이터만 조회합니다.
Request URL
GET https://api.v4.wecandeo.com/report/statistics/video/v1/browser/detail?browser={browser}&sdate={yyyy-mm-dd}&edate={yyyy-mm-dd}Request Parameters
| Parameter Name | Type | Description | 
|---|---|---|
| sdate (Required) | String | 조회할 시작 날짜 (yyyy-mm-dd) | 
| edate (Required) | String | 조회할 마지막 날짜 (yyyy-mm-dd) | 
| browser (Required) | String | 브라우저 이름 | 
| packageId | Number | 패키지 아이디 | 
| accessKey | String | 원본 키 (Access Key) | 
| pageSize | Number | 조회 결과 페이지당 목록 수량 (default 30) | 
| sortData | String | 정렬 대상 
 | 
| sortDirection | String | 정렬 옵션 
 | 
Response Example
{
  "isSuccess":true,
  "message":"",
  "data":{
    "list":[
      {
        "duration":"37",
        "videoCount":"19",
        "browser":"Chrome",
        "detail":"Chrome 111.0.0.0"
      },
      {
        "duration":"279",
        "videoCount":"15",
        "browser":"Chrome",
        "detail":"Chrome 110.0.0.0"
      }
    ],
    "requestId":"232984f1-1e6a-4b76-96d3-126f0bffbdc4",
    "pageSize":"30",
    "nextToken":""
  }
}Response Data Value
| Name | Type | Description | 
|---|---|---|
| browser | String | 브라우저 명칭 | 
| detail | String | 브라우저 상세정보 | 
추가 데이터 요청
pageSize를 초과하는 데이터가 존재 하는 경우 다음 Request URL을 이용하여, 추가 데이터를 요청합니다.
Request URL
GET https://api.v4.wecandeo.com/report/statistics/video/v1/browser/detail?requestId={request_id}&nextToken={next_token}Request Parameters
| Parameter Name | Type | Description | 
|---|---|---|
| requestId (Required) | String | 기존 요청 정보 ID | 
| nextToken (Required) | String | 다음 토큰 정보 | 
| pageSize | Number | 조회 결과 페이지당 목록 수량 (default 30) | 
