계약서/전자서명 조회 API

계약서 및 전자계약에 대한 정보/현황을 조회할 수 있는 API입니다.

GET kit-api/v1/contracts/[contract uuid]

Method: GET Endpoint: kit-api/v1/contracts/[contract uuid]

Example

...kit-api/v1/contracts/akahgk23-afasdvc-asdkhfwh3sd

Response

{
  "ok": true, // api 성공 여부
  "message": undefined, // Error가 존재하면 message(string)로 전달
  "data": {
    // 계약 정보 (contract)
    "contract": {
      "uuid": "akahgk23-afasdvc-asdkhfwh3sd", // 문서 ID (uuid 값을 api에서 사용합니다)
      "concludedFile": "...concluded.pdf", // 체결된 계약 문서 url
      "title": "A컴퍼니 MOU", // 계약서 이름
      "file": "...contract.pdf", // 원본 계약 문서 url
      "createdAt": "2024-07-05 06:40:35", // 생성일
      "status": "CREATED", // 계약 상태 (CREATED, CONCLUDED)
      "signature": {
        // 전자서명 정보
        "uuid": "jvakfljva-fad3edd-badfawdcah", // 전자서명 ID
        "title": "A컴퍼니 MOU 전자서명", // 전자서명 제목
        "expiredDate": "2024-10-05 06:40:35", // 전자서명 만료일
        "status": "WAITING", // 전자서명 상태 (CREATED, WAITING, DONE, CANCELED)
        "createdAt": "2024-07-05 06:40:35", // 생성일
        "participants": [], // 전자서명 참여자 정보
        "objects": [
          {
            // 전자서명 입력값 정보
            "contents": "서울시 강남구 선릉로 551", // 내용
            "type": "TEXT", // 종류 (TEXT, SIGNATURE, CHECKBOX)
            "category": "DEFAULT", // 유형 (DEFAULT, INPUT)
            "name": "주소", // 이름
            "description": "상세 주소를 입력해 주세요." // 설명
          }
        ]
      }
    }
  }
}

Last updated