> For the complete documentation index, see [llms.txt](https://develop-hotopay.potatosoft.kr/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://develop-hotopay.potatosoft.kr/code-table.md).

# 코드 테이블

### 결제 상태 (PayStatus)

<table><thead><tr><th width="174.5">값</th><th>설명</th></tr></thead><tbody><tr><td><code>DONE</code></td><td>결제 완료. 대금을 받은 상태입니다.</td></tr><tr><td><code>PENDING</code></td><td>결제 대기중. 회원이 결제 정보를 입력하고 실결제를 진행하고 있는 단계입니다.</td></tr><tr><td><code>WAITING_FOR_DEPOSIT</code></td><td><p>입금 대기중. 결제 프로세스는 완료했으나, 입금을 대기중인 상태입니다.</p><p>이 단계는 가상계좌 결제타입에만 존재합니다.</p></td></tr><tr><td><code>CANCELED</code></td><td>결제 취소. 유저가 결제 진행 도중에 결제를 취소한 상태입니다.</td></tr><tr><td><code>EXPIRED</code></td><td><p>결제 만료. 결제 프로세스를 진행한 시간으로부터 너무 오랜 시간이 지나 만료된 결제건입니다.</p><p>최대 3일동안 <code>PENDING</code> 상태로 있는 결제건은 자동으로 <code>EXPIRED</code> 상태로 변경됩니다.</p></td></tr><tr><td><code>FAILED</code></td><td><p>결제 실패. 회원이 결제를 실패한 결제건입니다.</p><p>결제 실패 사유는 결제 데이터를 보면서 판단이 필요합니다.</p></td></tr><tr><td><code>REFUNDED</code></td><td>결제 환불. 관리자가 해당 결제를 환불한 상태입니다.</td></tr></tbody></table>

### 결제사 (PG)

| PG          | 이름                | 개발자센터                                                         |
| ----------- | ----------------- | ------------------------------------------------------------- |
| `toss`      | 토스페이먼츠            | <https://developers.tosspayments.com>                         |
| `tossbill`  | 토스페이먼츠 (정기결제)     | <https://developers.tosspayments.com>                         |
| `paypal`    | 페이팔               | <https://developer.paypal.com/home>                           |
| `kakao`     | 카카오페이             | <https://developers.kakao.com/docs/latest/ko/kakaopay/common> |
| `inicis`    | 이니시스              | <https://guide.portone.io>                                    |
| `payple`    | 페이플               | <https://developer.payple.kr>                                 |
| `n_account` | 무통장입금             |                                                               |
| `point`     | 포인트 결제 (0원 결제 포함) |                                                               |

### 결제 수단 (PayMethod)

| 값                   | 결제수단           |
| ------------------- | -------------- |
| `n_account`         | 무통장 입금         |
| `ts_account`        | 계좌 이체 (토스)     |
| `v_account`         | 가상계좌 (토스)      |
| `card`              | 신용카드 (토스)      |
| `voucher`           | 문화상품권 (토스)     |
| `cellphone`         | 휴대폰 (토스)       |
| `paypal`            | 페이팔            |
| `kakaopay`          | 카카오페이          |
| `toss`              | 토스앱 (결제위젯 포함)  |
| `inic_card`         | 신용카드 (이니시스)    |
| `inic_trans`        | 실시간계좌이체 (이니시스) |
| `inic_phone`        | 휴대폰소액결제 (이니시스) |
| `inic_cultureland`  | 문화상품권 (이니시스)   |
| `inic_smartculture` | 스마트문상 (이니시스)   |
| `inic_happymoney`   | 해피머니 (이니시스)    |
| `paypl_card`        | 신용카드 (페이플)     |
| `paypl_transfer`    | 계좌이체 (페이플)     |
| `point`             | 포인트 (0원 결제 포함) |

### 빌링 상태 (BillingStatus)

<table><thead><tr><th width="174.5">값</th><th>설명</th></tr></thead><tbody><tr><td><code>DONE</code></td><td>결제 완료. 대금을 받은 상태입니다.</td></tr><tr><td><code>FAILED_RENEW</code></td><td><p>갱신 실패. 등록한 결제정보로 결제를 진행했으나 결제에 실패한 상태입니다.</p><p>결제 실패 사유는 결제 데이터를 보면서 판단이 필요합니다.</p></td></tr></tbody></table>


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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://develop-hotopay.potatosoft.kr/code-table.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.
