GET api/ctns/sel_download_content_log?site_name={site_name}&con_kind={con_kind}&con_name_kor={con_name_kor}

콘텐츠 다운로드 로그 목록 가져옴

Request Information

URI Parameters

NameDescriptionTypeAdditional information
site_name

기관 이름

string

Required

con_kind

콘텐츠 종류

string

Required

con_name_kor

콘텐츠 한글명

string

Required

Body Parameters

None.

Response Information

Resource Description

성공시 등록일, 기관 코드, 콘텐츠 종류, 콘텐츠 영문명, 버전, Status : Success 반환

Collection of C_Download_Contents_Log
NameDescriptionTypeAdditional information
RESIVE_DATE

다운로드 날짜

string

None.

SITE_NAME

기관명 (다운로드 로그 목록 가져올 때 조인으로 가져옴)

string

None.

SITE_ID

기관 코드

string

None.

CON_KIND

콘텐츠 분류

string

None.

CON_NAME

콘텐츠 영문명

string

None.

CON_NAME_KOR

콘텐츠 한글명

string

None.

VER

버전 정보

string

None.

Status

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

string

None.

Response Formats

application/json, text/json

Sample:
[
  null,
  {
    "RESIVE_DATE": "0001-01-01 00:00:00.0000000",
    "SITE_NAME": null,
    "SITE_ID": null,
    "CON_KIND": null,
    "CON_NAME": null,
    "CON_NAME_KOR": null,
    "VER": null,
    "Status": null
  }
]

application/xml, text/xml

Sample:
<ArrayOfC_Download_Contents_Log xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HappyTable_WebAPI.Models">
  <C_Download_Contents_Log i:nil="true" />
  <C_Download_Contents_Log>
    <CON_KIND i:nil="true" />
    <CON_NAME i:nil="true" />
    <CON_NAME_KOR i:nil="true" />
    <RESIVE_DATE>0001-01-01 00:00:00.0000000</RESIVE_DATE>
    <SITE_ID i:nil="true" />
    <SITE_NAME i:nil="true" />
    <Status i:nil="true" />
    <VER i:nil="true" />
  </C_Download_Contents_Log>
</ArrayOfC_Download_Contents_Log>