전자서명 템플릿 대량계약 페이지 API
POST kit-api/v1/signature-templates/[key]/bulk-url
POST kit-api/v1/signature-templates/[key]/bulk-urlExample
...kit-api/v1/signature-templates/4328/bulk-url{
"input": {
"customerId": 3, // (Deprecated) defaultValue.customer.id를 사용해 주세요
"customerCustomKey": "CUSTOMER-TEST-001", // (Deprecated) defaultValue.customer.customKey를 사용해 주세요
"defaultValue": {
"customer": {
"id": 3,
"customKey": "B5-k159402" // 고객에게 할당된 40자 이하의 식별 key (id 또는 customKey를 전달)
},
"contract": {
"slugColumns": [
// 계약서에 연결할 커스텀 컬럼 정보
{
"slug": "slug-column-1", // 커스텀 컬럼 식별값 (별도 연락 필요)
"value": "slug-column-value" // 커스텀 컬럼 값 (String)
}
]
},
"signature": {
"requesterName": "요청자 이름" // 전자서명 요청자 이름
}
},
"options": {
"disabledInputs": ["REQUESTER_EMAIL"]
},
"items": [
{
"title": "테스트서명1",
"participant": {
"name": "김프릭",
"send": "EMAIL",
"email": "[email protected]"
},
"customKey": "TEST-001",
"items": [
{
"id": 13,
"contents": "김프릭"
}
]
},
{
"title": "테스트서명2",
"participant": {
"name": "이래티스",
"send": "EMAIL",
"email": "[email protected]",
"phone": "010-1234-1234", // 참여자 전화번호
"message": "빠른 서명 요청드립니다.",
"extraAuthList": [
{
// 추가 휴대폰 본인인증이 필요한 경우 해당 값 사용
"type": "MOBILE_IDENTIFICATION",
"phoneNumber": "010-1234-1234" // 참여자 명의의 휴대폰 번호
},
{
// 추가 암호인증이 필요한 경우 해당 값 사용
"type": "CODE",
"code": "secret1234"
}
]
},
"customerTitle": "ABC컴퍼니",
"items": [
{
"id": 13,
"contents": "이래티스"
}
]
}
]
}
}Request Body
Key
Description
Required
Request Body (input.defaultValue)
Key
Description
Required
Request Body (input.options)
Key
Description
Required
Request Body (input.items)
Key
Description
Required
Response
Status Code
Error Code
Description
Last updated