GET api/ctns_cog/sel_cog_game_table?con_name={con_name}&cog={cog}
게임 이름, 인지 능력 이름으로 검색하여 해당 조건에 맞는 게임의 인지 능력 배분 정보 가져옴
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
con_name |
게임 이름 |
string |
Default value is |
cog |
인지 능력 이름 |
string |
Default value is |
Body Parameters
None.
Response Information
Resource Description
Collection of C_Cog_Game_TableName | Description | Type | Additional information |
---|---|---|---|
CON_KIND | string |
None. |
|
CON_NAME | string |
None. |
|
COG_CONC | integer |
None. |
|
COG_ORT | integer |
None. |
|
COG_VIS | integer |
None. |
|
COG_MEM | integer |
None. |
|
COG_JUDG | integer |
None. |
|
COG_QCK | integer |
None. |
|
COG_NMR | integer |
None. |
|
COG_SPC | integer |
None. |
Response Formats
application/json, text/json
Sample:
[ { "CON_KIND": "sample string 1", "CON_NAME": "sample string 2", "COG_CONC": 3, "COG_ORT": 4, "COG_VIS": 5, "COG_MEM": 6, "COG_JUDG": 7, "COG_QCK": 8, "COG_NMR": 9, "COG_SPC": 10 }, { "CON_KIND": "sample string 1", "CON_NAME": "sample string 2", "COG_CONC": 3, "COG_ORT": 4, "COG_VIS": 5, "COG_MEM": 6, "COG_JUDG": 7, "COG_QCK": 8, "COG_NMR": 9, "COG_SPC": 10 } ]
application/xml, text/xml
Sample:
<ArrayOfC_Cog_Game_Table xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HappyTable_WebAPI.Models"> <C_Cog_Game_Table> <COG_CONC>3</COG_CONC> <COG_JUDG>7</COG_JUDG> <COG_MEM>6</COG_MEM> <COG_NMR>9</COG_NMR> <COG_ORT>4</COG_ORT> <COG_QCK>8</COG_QCK> <COG_SPC>10</COG_SPC> <COG_VIS>5</COG_VIS> <CON_KIND>sample string 1</CON_KIND> <CON_NAME>sample string 2</CON_NAME> </C_Cog_Game_Table> <C_Cog_Game_Table> <COG_CONC>3</COG_CONC> <COG_JUDG>7</COG_JUDG> <COG_MEM>6</COG_MEM> <COG_NMR>9</COG_NMR> <COG_ORT>4</COG_ORT> <COG_QCK>8</COG_QCK> <COG_SPC>10</COG_SPC> <COG_VIS>5</COG_VIS> <CON_KIND>sample string 1</CON_KIND> <CON_NAME>sample string 2</CON_NAME> </C_Cog_Game_Table> </ArrayOfC_Cog_Game_Table>