GET api/ctns_cog/sel_game_score?sort={sort}&s_date={s_date}&e_date={e_date}&site_id={site_id}&user_id={user_id}&con_name={con_name}
검색 조건에 맞는 게임 점수 정보 가져옴
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| sort |
분류 |
string |
Required |
| s_date |
검색 기간 |
string |
Required |
| e_date |
검색 기간 |
string |
Required |
| site_id |
기관 코드 |
string |
Default value is |
| user_id |
사용자 아이디 |
string |
Default value is |
| con_name |
게임 이름 |
string |
Default value is |
Body Parameters
None.
Response Information
Resource Description
성공 시 조건에 맞는 점수 목록 반환
Collection of C_Game_Cog_Score| Name | Description | Type | Additional information |
|---|---|---|---|
| CON_ID | string |
None. |
|
| CON_NAME | string |
None. |
|
| USER_ID | string |
None. |
|
| USER_NAME | string |
None. |
|
| SITE_ID | string |
None. |
|
| USER_AGE | integer |
None. |
|
| USER_EDUCATION | integer |
None. |
|
| USER_GENDER | integer |
None. |
|
| PLAY_TIME | integer |
None. |
|
| TIME_END | string |
None. |
|
| SCORE | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
null,
{
"CON_ID": "sample string 1",
"CON_NAME": "sample string 2",
"USER_ID": "sample string 3",
"USER_NAME": "sample string 4",
"SITE_ID": "sample string 5",
"USER_AGE": 6,
"USER_EDUCATION": 7,
"USER_GENDER": 8,
"PLAY_TIME": 9,
"TIME_END": "0001-01-01 00:00",
"SCORE": 0
}
]
application/xml, text/xml
Sample:
<ArrayOfC_Game_Cog_Score xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HappyTable_WebAPI.Models">
<C_Game_Cog_Score i:nil="true" />
<C_Game_Cog_Score>
<CON_ID>sample string 1</CON_ID>
<CON_NAME>sample string 2</CON_NAME>
<PLAY_TIME>9</PLAY_TIME>
<SCORE>0</SCORE>
<SITE_ID>sample string 5</SITE_ID>
<TIME_END>0001-01-01 00:00</TIME_END>
<USER_AGE>6</USER_AGE>
<USER_EDUCATION>7</USER_EDUCATION>
<USER_GENDER>8</USER_GENDER>
<USER_ID>sample string 3</USER_ID>
<USER_NAME>sample string 4</USER_NAME>
</C_Game_Cog_Score>
</ArrayOfC_Game_Cog_Score>