GET game/last/site/{id}
해당 기관 사용자들의 마지막 게임 플레이 기록 가져오는 메서드
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
id | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of C_Functional_Info_ContentName | Description | Type | Additional information |
---|---|---|---|
CON_ID | string |
None. |
|
USER_ID | string |
None. |
|
CON_NAME | string |
None. |
|
TIME_END | string |
None. |
|
PLAY_SCORE | integer |
None. |
|
EVALUATION_SCORE | decimal number |
None. |
|
STATUS | string |
None. |
Response Formats
application/json, text/json
Sample:
[ { "CON_ID": "sample string 1", "USER_ID": "sample string 2", "CON_NAME": "sample string 3", "TIME_END": "sample string 4", "PLAY_SCORE": 5, "EVALUATION_SCORE": 6.1, "STATUS": "sample string 7" }, { "CON_ID": "sample string 1", "USER_ID": "sample string 2", "CON_NAME": "sample string 3", "TIME_END": "sample string 4", "PLAY_SCORE": 5, "EVALUATION_SCORE": 6.1, "STATUS": "sample string 7" } ]
application/xml, text/xml
Sample:
<ArrayOfC_Functional_Info_Content xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HappyTable_FunctionalAPI.Models"> <C_Functional_Info_Content> <CON_ID>sample string 1</CON_ID> <CON_NAME>sample string 3</CON_NAME> <EVALUATION_SCORE>6.1</EVALUATION_SCORE> <PLAY_SCORE>5</PLAY_SCORE> <STATUS>sample string 7</STATUS> <TIME_END>sample string 4</TIME_END> <USER_ID>sample string 2</USER_ID> </C_Functional_Info_Content> <C_Functional_Info_Content> <CON_ID>sample string 1</CON_ID> <CON_NAME>sample string 3</CON_NAME> <EVALUATION_SCORE>6.1</EVALUATION_SCORE> <PLAY_SCORE>5</PLAY_SCORE> <STATUS>sample string 7</STATUS> <TIME_END>sample string 4</TIME_END> <USER_ID>sample string 2</USER_ID> </C_Functional_Info_Content> </ArrayOfC_Functional_Info_Content>