GET api/act/get_userlist?tel={tel}

(매니저) 사용자 전화번호를 입력하여 해당 하는 사용자 목록 반환

Request Information

URI Parameters

NameDescriptionTypeAdditional information
tel

사용자 전화번호

string

Default value is

Body Parameters

None.

Response Information

Resource Description

성공 시 해당 전화번호를 가진 사용자들의 아이디, 이름 return

M_User_List
NameDescriptionTypeAdditional information
M_User

Collection of M_User

None.

Response Formats

application/json, text/json

Sample:
{
  "M_User": [
    {
      "ID": "sample string 1",
      "Name": "sample string 2",
      "Gender": 3,
      "Status": "sample string 4"
    },
    {
      "ID": "sample string 1",
      "Name": "sample string 2",
      "Gender": 3,
      "Status": "sample string 4"
    }
  ]
}

application/xml, text/xml

Sample:
<C_M_UserList.M_User_List xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HappyTable_WebAPI.Models">
  <M_User>
    <C_M_UserList.M_User>
      <Gender>3</Gender>
      <ID>sample string 1</ID>
      <Name>sample string 2</Name>
      <Status>sample string 4</Status>
    </C_M_UserList.M_User>
    <C_M_UserList.M_User>
      <Gender>3</Gender>
      <ID>sample string 1</ID>
      <Name>sample string 2</Name>
      <Status>sample string 4</Status>
    </C_M_UserList.M_User>
  </M_User>
</C_M_UserList.M_User_List>