GET api/ctns/sel_all_play_date?site_id={site_id}
검색한 기관의 모든 플레이 정보 가져옴
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
site_id |
기관코드 |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of C_Play_DataName | Description | Type | Additional information |
---|---|---|---|
CON_ID | string |
None. |
|
USER_ID | string |
None. |
|
CON_KIND | string |
None. |
|
CON_NAME | string |
None. |
|
TIME_START | string |
None. |
|
TIME_END | string |
None. |
|
IS_VALID | boolean |
None. |
|
Status | string |
None. |
Response Formats
application/json, text/json
Sample:
[ { "CON_ID": "sample string 1", "USER_ID": "sample string 2", "CON_KIND": "sample string 3", "CON_NAME": "sample string 4", "TIME_START": "sample string 5", "TIME_END": "sample string 6", "IS_VALID": true, "Status": "sample string 8" }, { "CON_ID": "sample string 1", "USER_ID": "sample string 2", "CON_KIND": "sample string 3", "CON_NAME": "sample string 4", "TIME_START": "sample string 5", "TIME_END": "sample string 6", "IS_VALID": true, "Status": "sample string 8" } ]
application/xml, text/xml
Sample:
<ArrayOfC_Play_Data xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HappyTable_WebAPI.Models"> <C_Play_Data> <CON_ID>sample string 1</CON_ID> <CON_KIND>sample string 3</CON_KIND> <CON_NAME>sample string 4</CON_NAME> <IS_VALID>true</IS_VALID> <Status>sample string 8</Status> <TIME_END>sample string 6</TIME_END> <TIME_START>sample string 5</TIME_START> <USER_ID>sample string 2</USER_ID> </C_Play_Data> <C_Play_Data> <CON_ID>sample string 1</CON_ID> <CON_KIND>sample string 3</CON_KIND> <CON_NAME>sample string 4</CON_NAME> <IS_VALID>true</IS_VALID> <Status>sample string 8</Status> <TIME_END>sample string 6</TIME_END> <TIME_START>sample string 5</TIME_START> <USER_ID>sample string 2</USER_ID> </C_Play_Data> </ArrayOfC_Play_Data>