GET api/ctns/ins_info_contents?con_name={con_name}&id={id}&time_end={time_end}

컨텐츠 종류, 컨텐츠 이름, 사용자들의 아이디를 입력받아 TBL_INFO_CONTENTS 테이블에 삽입

Request Information

URI Parameters

NameDescriptionTypeAdditional information
con_name

컨텐츠 이름

string

Default value is Empty

id

사용자 아이디(여러명일 경우 ,로 구분

string

Default value is

time_end

컨텐츠 종료 시간(매니저 로컬 시간)

string

Default value is

Body Parameters

None.

Response Information

Resource Description

성공 시 컨텐츠 실행 아이디, 활동 아이디, 컨텐츠 이름, 컨텐츠 종류 이름, 사용자 아이디(그룹일경우 ,로 구분), 컨텐츠 종료 시간, 컨텐츠 실행일, Status : Success 반환

C_Info_Contents
NameDescriptionTypeAdditional information
CON_ID

string

None.

ACT_ID

string

None.

CON_NAME

string

None.

CON_KIND

string

None.

USER_GROUP

string

None.

TIME_END

string

None.

CON_DATE

string

None.

Status

string

None.

Response Formats

application/json, text/json

Sample:
{
  "CON_ID": "sample string 1",
  "ACT_ID": "sample string 2",
  "CON_NAME": "sample string 3",
  "CON_KIND": "sample string 4",
  "USER_GROUP": "sample string 5",
  "TIME_END": "sample string 6",
  "CON_DATE": "sample string 7",
  "Status": "sample string 8"
}

application/xml, text/xml

Sample:
<C_Info_Contents xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HappyTable_WebAPI.Models">
  <ACT_ID>sample string 2</ACT_ID>
  <CON_DATE>sample string 7</CON_DATE>
  <CON_ID>sample string 1</CON_ID>
  <CON_KIND>sample string 4</CON_KIND>
  <CON_NAME>sample string 3</CON_NAME>
  <Status>sample string 8</Status>
  <TIME_END>sample string 6</TIME_END>
  <USER_GROUP>sample string 5</USER_GROUP>
</C_Info_Contents>