> For the complete documentation index, see [llms.txt](https://api-kit.prix.im/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://api-kit.prix.im/signature/create-with-contract.md).

# 등록된 계약서로 전자서명 요청 페이지 API

응답으로 특정 계약서에 대한 전자서명 요청 페이지의 url을 내려줍니다. 해당 경로를 새 창이나 새 탭으로 띄워서 전자서명을 요청할 수 있습니다.

* 이미 전자서명이 요청된 계약서에 대해서는 이용할 수 없습니다.

<br>

## `GET` kit-api/v1/contracts/\[contract uuid]/signature-url

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

<br>

## Example

```
...kit-api/v1/contracts/ed976505-bcbd-47bd-913d-f4cde05dea7a/signature-url
```

<br>

## Response

```json
{
  "ok": true, // api 성공 시
  "data": {
    "url": "https://www.prix.im/..." // 전자서명 요청 페이지 주소
  }
}
```

<br>

```json
{
  "ok": false, // api 실패 시
  "message": "error message", // Error가 존재하면 message(string)로 전달
  "errorCode": "ERROR_CODE"
}
```

<br>
