GET api/ctns_cog/sel_survey_state?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

NameDescriptionTypeAdditional 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 ALL

Body Parameters

None.

Response Information

Resource Description

성공 시 조건에 맞는 상태검사 결과 가져옴

Collection of C_Survey_State
NameDescriptionTypeAdditional 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.

USER_STATE

string

None.

Status

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "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": "sample string 10",
    "USER_STATE": "sample string 11",
    "Status": "sample string 12"
  },
  {
    "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": "sample string 10",
    "USER_STATE": "sample string 11",
    "Status": "sample string 12"
  }
]

application/xml, text/xml

Sample:
<ArrayOfC_Survey_State xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HappyTable_WebAPI.Models">
  <C_Survey_State>
    <CON_ID>sample string 1</CON_ID>
    <CON_NAME>sample string 2</CON_NAME>
    <PLAY_TIME>9</PLAY_TIME>
    <SITE_ID>sample string 5</SITE_ID>
    <Status>sample string 12</Status>
    <TIME_END>sample string 10</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>
    <USER_STATE>sample string 11</USER_STATE>
  </C_Survey_State>
  <C_Survey_State>
    <CON_ID>sample string 1</CON_ID>
    <CON_NAME>sample string 2</CON_NAME>
    <PLAY_TIME>9</PLAY_TIME>
    <SITE_ID>sample string 5</SITE_ID>
    <Status>sample string 12</Status>
    <TIME_END>sample string 10</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>
    <USER_STATE>sample string 11</USER_STATE>
  </C_Survey_State>
</ArrayOfC_Survey_State>