인코딩 사용량을 날짜별로 조회합니다.
날짜별로 기록된 통계는 해당일의 최고치 또는 특정 시점의 현황이 기록되어 출력됩니다.
오늘 날짜의 경우 현재의 통계 데이터가 실시간으로 조회됩니다.
Request URL
GET https://api.acs.wecandeo.com/report/stats/video/encoding?sdate={yyyy-mm-dd}&edate={yyyy-mm-dd}&sort_direction={sort direction}Request Parameters
| Parameter Name | Type | Description | 
|---|---|---|
| sdate(Required) | String | 조회할 시작 날짜 (yyyy-mm-dd) | 
| edate(Required) | String | 조회할 마지막 날짜 (yyyy-mm-dd) | 
| sort_direction | String | 정렬 옵션 
 | 
Response Example
{
  "message":"success",
  "data":{
    "total_count":1,
    "list":[
      {
        "date":"2024-02-15",
        "codec":"h.264",
        "quality":"HD",
        "size":4.4482871E7,
        "count":1,
        "duration":3
      }
    ]
  }
}Response Data Value
| Name | Type | Description | 
|---|---|---|
| date | String | 날짜 | 
| codec | String | 영상 코덱 (e.g., h.264, h.265) | 
| quality | String | 출력 등급 | 
| size | Number | 총 출력 크기 (Byte) | 
| count | Number | 인코딩 작업 수 (회) | 
| duration | Number | 총 출력 길이 (분) | 
※ 공통 Response 참조
