완료 문서 Zip파일 URL

완료된 계약에 대해서 완료PDF와 이력인증서를 ZIP파일로 다운로드하는 URL을 리턴 합니다.

완료 문서 Zip파일URL 생성

POST /rest/api/get-complete-zip-url

완료된 문서에 대해서 7일간 유효한 Zip 파일다운로드 url 제공

Headers

Name
Type
Description

apiKey*

String

apiKey

Request Body

Name
Type
Description

sharedKey*

String

계약서 생성 시 획득한 sharedKey

Request Example

// Sample Body
{
    "sharedKey":"eHllMGpsTM6NkbAf0xxxxxxxxxxxT09"
}

Response Example

{
    "result":"success",               // 결과 정보
    "completeZipUrl":"https://..."    // 다운로드 URL, S3의 PresignedURL로 7일간 다운로드 가능.
}

Last updated