GET api/ctns/sel_contents_play_log?con_kind={con_kind}&con_name={con_name}&s_date={s_date}&e_date={e_date}&site_id={site_id}
검색한 컨텐츠의 검색 기간 내 플레이 기록 가져옴
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
con_kind |
컨텐츠 종류 |
string |
Required |
con_name |
컨텐츠 이름 |
string |
Required |
s_date |
검색 기간 |
string |
Required |
e_date |
검색 기간 |
string |
Required |
site_id |
기관 코드 |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
성공 시 해당하는 플레이 기록 가져옴
Collection of C_Contents_Play_LogName | Description | Type | Additional information |
---|---|---|---|
CON_ID | string |
None. |
|
CON_KIND | string |
None. |
|
CON_NAME | string |
None. |
|
USER_GROUP | string |
None. |
|
SITE_ID | string |
None. |
|
PLAY_TIME | integer |
None. |
|
PLAY_DATE | string |
None. |
|
Status | string |
None. |
Response Formats
application/json, text/json
Sample:
[ { "CON_ID": "sample string 1", "CON_KIND": "sample string 2", "CON_NAME": "sample string 3", "USER_GROUP": "sample string 4", "SITE_ID": "sample string 5", "PLAY_TIME": 6, "PLAY_DATE": "sample string 7", "Status": "sample string 8" }, { "CON_ID": "sample string 1", "CON_KIND": "sample string 2", "CON_NAME": "sample string 3", "USER_GROUP": "sample string 4", "SITE_ID": "sample string 5", "PLAY_TIME": 6, "PLAY_DATE": "sample string 7", "Status": "sample string 8" } ]
application/xml, text/xml
Sample:
<ArrayOfC_Contents_Play_Log xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HappyTable_WebAPI.Models"> <C_Contents_Play_Log> <CON_ID>sample string 1</CON_ID> <CON_KIND>sample string 2</CON_KIND> <CON_NAME>sample string 3</CON_NAME> <PLAY_DATE>sample string 7</PLAY_DATE> <PLAY_TIME>6</PLAY_TIME> <SITE_ID>sample string 5</SITE_ID> <Status>sample string 8</Status> <USER_GROUP>sample string 4</USER_GROUP> </C_Contents_Play_Log> <C_Contents_Play_Log> <CON_ID>sample string 1</CON_ID> <CON_KIND>sample string 2</CON_KIND> <CON_NAME>sample string 3</CON_NAME> <PLAY_DATE>sample string 7</PLAY_DATE> <PLAY_TIME>6</PLAY_TIME> <SITE_ID>sample string 5</SITE_ID> <Status>sample string 8</Status> <USER_GROUP>sample string 4</USER_GROUP> </C_Contents_Play_Log> </ArrayOfC_Contents_Play_Log>