> For the complete documentation index, see [llms.txt](https://ofin.gitbook.io/document/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://ofin.gitbook.io/document/withdrawal/status-bulk.md).

# 납부 정보 다건 조회

구매자가 구매한 건에 대한 **납부(상환) 이력 및 상태**를 조회하는 API입니다.

## Endpoints

* **URL:** `/api/v1/user/withdrawal/status/bulk`
* **Method:** `POST`&#x20;

## **Request**

* **apiKey (String) (Required) (maxLen:255)**
  * 플랫폼 API Key
* **List\<orderNo> (List\<String>) (Required) (maxLen:100)**
  * 주문번호 목록
  * 주문번호는 최대 100개 까지만 조회할 수 있습니다.

#### **Request Example**

```json
{
  "apiKey": "my8isVOhkPvAeLbtealSrEYyJBCZa ... BSDINWJPKs6th5QBTdYZHCtLxavagMR2I",
  "orderNo" : [
      "order:20250901:000001",
      "order:20250901:000002",
      "order:20250901:000003"
  ]
}
```

## Response

* **withdrawalStatuses (List)**
  * 납부 정보 다건 조회 응답 목록
  * 조회 시 에러가 발생하는 경우 **결과 목록에서 제외**될 수 있습니다
* **businessNumber (String) (maxLen:10)**
  * 사업자등록번호
* **orderNo (String) (maxLen:50)**
  * 주문번호
* **purchaseAmount (Integer) (maxLen:16)**
  * 결제 금액
* **feePayer (String) (maxLen:20)**
  * 수수료 부담 주체
  * 구매자(PURCHASER) / 플랫폼(PLATFORM)
* **feeAmount** (**Integer) (maxLen:16)**
  * 수수료
* **totalWithdrawalAmount (Integer) (maxLen:16)**
  * 출금 예정 금액&#x20;
* **withdrawalDueDate (String) (maxLen:11)**
  * 출금 예정일 (yyyy-mm-dd)
* **withdrawalBankName (String) (maxLen:10)**
  * 출금계좌 은행명
* **withdrawalAccountNumber (String) (maxLen:50)**
  * 일부 마스킹된 출금계좌 계좌번호
* **withdrawalAccountHolder (String) (maxLen:20)**
  * 일부 마스킹된 출금계좌 예금주
* **unpaidAmount (Integer) (maxLen:16)**
  * 미납 금액 (미납 시점의 결제 금액 + 납부 수수료)
* **unpaidFeeAmount** **(Integer)** **(maxLen:16)**
  * 미납 수수료 (미납 금액에 대한 미납 수수료)
* **withdrawalStatus (String) (maxLen:20)**
  * 현재 납부 상태
  * ACTIVE : 현재 회수 대기 또는 진행 중인 상태.
  * COMPLETED : 회수 완료 상태
  * UNPAID : 미납 상태
  * CANCELLED : 취소된 채권 상태
  * REFUNDED : 결제 취소 채권으로 플랫폼에서 오핀으로 환불 필요 상태
* **withdrawalCompletedDate(String) (maxLen:20)**
  * 납부 완료 일시
* **paidAmount (Integer) (maxLen:16)**
  * 현재까지 납부 완료된 금액

#### **Response Example**

```json
{
  "withdrawalStatuses": [
    {
      "businessNumber": "2138152063",
      "orderNo": "order:20250901:000001",
      "purchaseAmount": 10000,
      "feePayer": "PLATFORM",
      "feeAmount": 0,
      "totalWithdrawalAmount": 10000,
      "withdrawalDueDate": "2025-12-30",
      "withdrawalBankName": "국민은행",
      "withdrawalAccountNumber": "123****5678",
      "withdrawalAccountHolder": "테****주",
      "unpaidAmount": 0,
      "unpaidFeeAmount": 0,
      "withdrawalStatus": "CANCELLED",
      "withdrawalCompletedDate": null,
      "paidAmount": 0
    },
    {
      "businessNumber": "2138152063",
      "orderNo": "order:20250901:000002",
      "purchaseAmount": 10000,
      "feePayer": "PLATFORM",
      "feeAmount": 0,
      "totalWithdrawalAmount": 10000,
      "withdrawalDueDate": "2025-10-07",
      "withdrawalBankName": "국민은행",
      "withdrawalAccountNumber": "123****5678",
      "withdrawalAccountHolder": "테****주",
      "unpaidAmount": 0,
      "unpaidFeeAmount": 0,
      "withdrawalStatus": "ACTIVE",
      "withdrawalCompletedDate": null,
      "paidAmount": 0
    },
    {
      "businessNumber": "2138152063",
      "orderNo": "order:20250901:000003",
      "purchaseAmount": 10000,
      "feePayer": "PLATFORM",
      "feeAmount": 0,
      "totalWithdrawalAmount": 10000,
      "withdrawalDueDate": "2025-12-30",
      "withdrawalBankName": "국민은행",
      "withdrawalAccountNumber": "123****5678",
      "withdrawalAccountHolder": "테****주",
      "unpaidAmount": 0,
      "unpaidFeeAmount": 0,
      "withdrawalStatus": "ACTIVE",
      "withdrawalCompletedDate": null,
      "paidAmount": 0
    }
  ]
}
```

### Error Handling

* BAD\_REQUEST : 유효하지 않은 데이터입니다.
* INTERNAL\_SERVER\_ERROR : 서버 내부 에러입니다.

```json
{
  "meta": {
    "code": "INTERNAL_SERVER_ERROR",
    "message": "서버 내부 에러입니다."
  },
  "data": null
}
```


---

# 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, and the optional `goal` query parameter:

```
GET https://ofin.gitbook.io/document/withdrawal/status-bulk.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
