# 계약서/전자서명 상세 페이지 API

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

<br>

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

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

<br>

## Example

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

<br>

## Response

```json
{
  "ok": true, // api 성공 시
  "data": {
    "url": "https://www.prix.im/..." // 계약서/전자서명에 대한 상세 정보 페이지 주소
  }
}
```

<br>

```json
{
  "ok": false, // api 실패 시
  "message": "유효하지 않은 API KEY 정보입니다.", // header에 x-api-key가 유효하지 않는 경우
  "errorCode": "UNAUTHORIZED_API_KEY"
}
```

<br>

```json
{
  "ok": false, // api 실패 시
  "message": "권한이 없는 유저입니다.", // 비즈니스에 등록된 API 멤버의 권한이 해당 계약서에 대한 권한이 없는 경우
  "errorCode": "FORBIDDEN_USER"
}
```

<br>

| Status Code | Error Code           | Description       |
| ----------- | -------------------- | ----------------- |
| 401         | FORBIDDEN\_BUSINESS  | 헤당 계약서에 권한이 없는 경우 |
| 404         | NOT\_FOUND\_CUSTOMER | 존재하지 않는 고객인 경우    |

<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/manage.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.
