# 등록된 계약서로 전자서명 요청 페이지 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>


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://api-kit.prix.im/signature/create-with-contract.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
