템플릿 조회
개요
전자계약서비스 싸인오케이 메인 페이지에서 설정한 특정 템플릿의 상세 정보를 조회합니다.
URL
/api/v2/template/{id}
요청 데이터
항목 | 타입 | 위치 | 설명 |
---|---|---|---|
id | String | query | 템플릿 ID |
응답 데이터
항목 | 타입 | 위치 | 설명 |
---|---|---|---|
result | Object | body | 결과 데이터 |
id | String | body | 템플릿 ID |
title | String | body | 제목 |
created_datetime | String | body | 생성 일시 |
creator_id | String | body | 생성자 아이디 |
creator_name | String | body | 생성자 이름 |
attach_files | Array | body | 템플릿 첨부파일 |
name | String | body | 템플릿 첨부파일 명 |
options | Object | body | - |
meet | Boolean | body | 대면서명 여부 |
signer_order | Boolean | body | 순차서명 여부 |
signer | Array | body | 서명 대상자 배열 |
index | Integer | body | 대상자 순번 |
id | String | body | 대상자 ID값 |
type | String | body | 대상자 구분 – SIGNATORY(서명자), REVIEWER(검토자) |
sign_method | String | body | 서명방법 – SIMPLE(간편서명), CERTIFICATE(공동인증서서명) |
items | Array | body | 입력항목 리스트 |
type | String | body | 입력항목 타입 - STAMP, TEXT, CHECKBOX, SELECTBOX |
Key | String | body | API Key |
alias | String | body | 항목명 |
required | Boolean | body | 필수여부 |
page | Integer | body | 입력항목 페이지 |
attach_files | Array | body | 첨부파일 요청 |
name | String | body | 요청 첨부파일 이름 |
description | String | body | 요청 첨부파일 설명 |
required | Boolean | body | 필수 여부 |
code | String | body | 성공, 실패 코드 |
message | String | body | 성공, 실패 메시지 |
응답 데이터 예시
{
"result": {
"id": "c1947421c93a40faa86f82bed5795eb5",
"title": "title",
"create_id": "test@signgate.com",
"creator_name": "creator_name",
"create_datetime": "2023-06-05 09:56:49",
"attach_files": [],
"options": {
"meet": true,
"signer_order": false
},
"signer": [
{
"id": "cc1d326dcefc48dbbf6ba00bdfab6ac4",
"index": 1,
"type": "SIGNATORY",
"sign_method": "SIMPLE",
"items": [
{
"type": "CHECKBOX",
"alias": "체크박스",
"required": true,
"page": 1
},
{
"type": "STAMP",
"alias": "스탬프박스",
"key": "org_stamp",
"required": true,
"page": 1
},
{
"type": "TEXT",
"alias": "텍스트박스",
"required": false,
"page": 1
},
{
"type": "RADIOBOX",
"alias": "라디오박스",
"required": true,
"page": 1
}
],
"attach_files": []
}
]
},
"code": "200",
"message": "success"
}