POST api/ctns/ins_version_content

DB에 콘텐츠 추가

Request Information

URI Parameters

None.

Body Parameters

C_Version_Contents
NameDescriptionTypeAdditional information
REGIST_DATE

등록 날짜

string

None.

CON_NAME

콘텐츠 이름 (영문)

string

None.

CON_KIND

콘텐츠 종류

string

None.

CON_NAME_KOR

콘텐츠 이름 (한글)

string

None.

CON_ABILITY

콘텐츠 인지능력

string

None.

CON_DESCRIPTION

콘텐츠 설명

string

None.

ICON_PATH

아이콘 경로

string

None.

SCREENSHOT_PATH

스크린샷 경로

string

None.

VER_LATEST

최신 버전 정보

string

None.

VER_DESCRIPTION

버전 설명

string

None.

PRICE

콘텐츠 가격

integer

None.

IS_VALID

유효성 여부

boolean

None.

RESIVE_DATE

수정 날짜

string

None.

Status

서버 통신 시 통신 상태 코드 (Success: 값이 제대로 전달, Failed: 값을 전달할 수 없는 상태(ex. 콘텐츠 정보 존재하지 않음), Error: web api 메서드에서 Exception 발생)

string

None.

Request Formats

application/json, text/json

Sample:
{
  "REGIST_DATE": "sample string 1",
  "CON_NAME": "sample string 2",
  "CON_KIND": "sample string 3",
  "CON_NAME_KOR": "sample string 4",
  "CON_ABILITY": "sample string 5",
  "CON_DESCRIPTION": "sample string 6",
  "ICON_PATH": "sample string 7",
  "SCREENSHOT_PATH": "sample string 8",
  "VER_LATEST": "sample string 9",
  "VER_DESCRIPTION": "sample string 10",
  "PRICE": 11,
  "IS_VALID": true,
  "RESIVE_DATE": "sample string 13",
  "Status": "sample string 14"
}

application/xml, text/xml

Sample:
<C_Version_Contents xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HappyTable_WebAPI.Models">
  <CON_ABILITY>sample string 5</CON_ABILITY>
  <CON_DESCRIPTION>sample string 6</CON_DESCRIPTION>
  <CON_KIND>sample string 3</CON_KIND>
  <CON_NAME>sample string 2</CON_NAME>
  <CON_NAME_KOR>sample string 4</CON_NAME_KOR>
  <ICON_PATH>sample string 7</ICON_PATH>
  <IS_VALID>true</IS_VALID>
  <PRICE>11</PRICE>
  <REGIST_DATE>sample string 1</REGIST_DATE>
  <RESIVE_DATE>sample string 13</RESIVE_DATE>
  <SCREENSHOT_PATH>sample string 8</SCREENSHOT_PATH>
  <Status>sample string 14</Status>
  <VER_DESCRIPTION>sample string 10</VER_DESCRIPTION>
  <VER_LATEST>sample string 9</VER_LATEST>
</C_Version_Contents>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

성공 시 Success, 실패 시 Failed 반환

string

Response Formats

application/json, text/json

Sample:
"sample string 1"

application/xml, text/xml

Sample:
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">sample string 1</string>