Skip to main content Link Menu Expand (external link) Document Search Copy Copied

전자계약 정보 조회

개요

싸인오케이 홈페이지에서 설정한 문서의 상세 정보를 조회합니다.


URL

/api/v2/document/{id}

요청 데이터

항목타입위치설명
idStringquery문서 ID

응답 데이터

항목타입위치설명
resultObjectbody결과 데이터
    idStringbody문서 아이디
    titleStringbody제목
    status_descriptionStringbody문서 이력 상태 설명
    statusStringbody문서 상태 코드
    expired_dateStringbody만료일
    view_urlStringbody문서 보기 URL
    download_urlStringbody문서 다운로드 URL (문서 완료시 제공)
    creator_idStringbody생성자 ID
    creator_nameStringbody생성자 이름
    create_datetimeStringbody생성 일시
    complete_datetimeStringbody문서 완료 일시
    search_codeStringbody검색 코드
    attach_filesArraybody전자문서 첨부파일
        nameStringbody전자문서 첨부파일명
    optionsObjectbody-
        meetBooleanbody대면서명 여부(Default false)
        signer_orderBooleanbody순차서명 여부(Default false)
    signerArraybody서명 대상자 배열
        indexIntegerbody대상자 순번
        typeStringbody대상자 구분 – SIGNATORY(서명자), REVIEWER(검토자)
        sign_methodStringbody서명방법 – SIMPLE(간편서명), CERTIFICATE(공동인증서서명)
        nameStringbody대상자 이름
        contactStringbody대상자 연락처(이메일/휴대폰)
        view_urlStringbody서명대사장의 서명가능 URL
        itemsArraybody입력항목 리스트
            typeStringbody입력항목 타입 - STAMP, TEXT, CHECKBOX, SELECTBOX
            aliasStringbody항목명
            valueStringbody항목값
            keyStringbodyAPI Key
            requiredBooleanbody필수여부
            pageIntegerbody입력항목 페이지
        attach_filesArraybody첨부파일 요청
            nameStringbody요청 첨부파일 이름
            descriptionStringbody요청 첨부파일 설명
            attachedBooleanbody첨부여부
        authObjectbody문서 열람 인증 설정
            passwordStringbody비밀번호
            hpStringbody휴대폰인증용 실명 (연락처가 휴대폰일 때 적용)
            simpleStringbody간편인증용 실명 (연락처가 휴대폰일 때 적용)
            biz_noStringbody법인 공동인증서 인증용 사업자번호
        memoStringbody남길말
    cc_listArraybody참조자 리스트
        contactStringbody참조자 연락처 정보(이메일)
    historyArraybody문서 이력 배열
        indexIntegerbody문서 이력 순번
        nameStringbody문서 이력 대상자 이름
        contactStringbody문서 이력 대상자 연락처(이메일/휴대폰)
        status_descriptionStringbody문서 이력 상태 설명
        history_datetimeStringbody문서 이력 일시
codeStringbody성공, 실패 코드
messageStringbody성공, 실패 메시지

응답 데이터 예시

{
    "result": {
        "id": "734538d4fd4f4b3abb6",
        "title": "title",
        "status_description": "진행",
        "status": "ESC001",
        "view_url": "https://doc.signok.com/linkUrl?ABCDEF",
        "download_url": "https://doc.signok.com/api/v2/document/734538d4fd4f4b3abb6/download",
        "creator_id": "test@signgate.com",
        "creator_name": "creator_name",
        "create_datetime": "2023-06-05 13:45:21",
        "complete_datetime": "2023-06-06 13:45:21",
        "search_code": "searchcode",
        "attach_files": [],
        "options": {
            "meet": true,
            "signer_order": false
        },
        "signer": [
            {
                "index": 1,
                "type": "SIGNATORY",
                "sign_method": "SIMPLE",
                "name": "name",
                "contact": "01012345678",
                "memo": "memo",
                "view_url": "https://doc.signok.com/linkUrl?DN20XHYYSJP5",
                "items": [
                    {
                        "type": "TEXT",
                        "alias": "ALIAS",
                        "required": true,
                        "page": 1
                    },
                    {
                        "type": "STAMP",
                        "alias": "ALIAS",
                        "key": "org_stamp",
                        "required": true,
                        "page": 1
                    }
                ],
                "attach_files": [],
                "auth": {
                    "password": "1234"
                }
            },
            {
                "index": 0,
                "type": "REFEREE",
                "contact": "contact@signgate.com",
                "view_url": "https://doc.signok.com/linkUrl?4SMX5WR2NX",
                "items": [],
                "attach_files": [],
                "auth": {}
            }
        ],
        "cc_list": [
            {
                "contact": "cc@signgate.com"
            }
        ],
        "history": [
            {
                "index": 1,
                "name": "name",
                "contact": "01056781234",
                "status_description": "서명대기중",
                "history_datetime": "2023-06-05 13:45:21"
            },
            {
                "index": 2,
                "name": "name",
                "contact": "01023456789",
                "status_description": "대면서명인증요청",
                "history_datetime": "2023-06-05 13:45:21"
            }
        ]
    },
    "code": "200",
    "message": "success"
}

Back to top

COPYRIGHT (C) 2022 KICA INC. ALL RIGHTS RESERVED