GET user/{id}/game/info

(MANAGER) 사용자 아이디를 받아 기본 정보, 나이대 기준점수 데이터를 리턴

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

string

Required

Body Parameters

None.

Response Information

Resource Description

C_M_Info_User
NameDescriptionTypeAdditional information
M_User

M_User

None.

M_Score_List

M_Score_List

None.

Response Formats

application/json, text/json

Sample:
{
  "M_User": {
    "ID": "sample string 1",
    "NAME": "sample string 2",
    "BIRTH": "sample string 3",
    "GENDER": 4,
    "EDUCATION": 5,
    "AGE": 6,
    "CON_ID": "sample string 7",
    "STATUS": "sample string 8"
  },
  "M_Score_List": {
    "M_ScoreList": [
      {
        "NAME": "sample string 1",
        "SCORE": 2
      },
      {
        "NAME": "sample string 1",
        "SCORE": 2
      }
    ]
  }
}

application/xml, text/xml

Sample:
<C_M_Info_User xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HappyTable_FunctionalAPI.Models">
  <M_Score_List>
    <M_ScoreList>
      <M_Score>
        <NAME>sample string 1</NAME>
        <SCORE>2</SCORE>
      </M_Score>
      <M_Score>
        <NAME>sample string 1</NAME>
        <SCORE>2</SCORE>
      </M_Score>
    </M_ScoreList>
  </M_Score_List>
  <M_User>
    <AGE>6</AGE>
    <BIRTH>sample string 3</BIRTH>
    <CON_ID>sample string 7</CON_ID>
    <EDUCATION>5</EDUCATION>
    <GENDER>4</GENDER>
    <ID>sample string 1</ID>
    <NAME>sample string 2</NAME>
    <STATUS>sample string 8</STATUS>
  </M_User>
</C_M_Info_User>