> For the complete documentation index, see [llms.txt](https://lumiwavelab.gitbook.io/internal-inno-platform-doc-kr/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://lumiwavelab.gitbook.io/internal-inno-platform-doc-kr/reference/api-reference-v2/inno-market/my-page/undefined-3.md).

# 내 결제 목록

록

<mark style="color:blue;">`GET`</mark> `https://{market-domain}/v1.0/mypage/payment/list`

#### Query Parameters

| Name         | Type  | Description          |
| ------------ | ----- | -------------------- |
| page\_offset | int64 | 페이지 번호 (default : 1) |
| page\_size   | int64 | 페이지 크기 (default : 8) |

#### Headers

| Name                                            | Type   | Description                   |
| ----------------------------------------------- | ------ | ----------------------------- |
| Authorization<mark style="color:red;">\*</mark> | String | Bearer eyJhbGciOiJIUzI1NiI... |

{% tabs %}
{% tab title="200: OK " %}

````javascript
```json
{
    "return": 0,
    "message": "success",
    "value": {
        "page_offset": 1,
        "page_size": 10,
        "total_count": 1,
        "my_payments": [
            {
                "order_id": "9fe9abe653c97da1636fa09c0f571595",
                "payment_type": "CHECKOUTCCAUD",
                "fiat_code": "AUD",
                "fiat_amount": 200,
                "coin_code": "MATIC",
                "coin_amount": 138.366235,
                "blockchain_code": "MATIC",
                "blockchain_desc": "Polygon",
                "order_dt": "2022-12-07T02:42:59Z",
                "order_status": "cancelled"
            }
        ]
    }
}
```
````

{% endtab %}
{% endtabs %}

{% tabs %}
{% tab title="Example Curl" %}
curl --location --request GET '<https://localhost:51071/v1.0/mypage/payment/list'\\>
\--header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsI....'
{% endtab %}

{% tab title="Response Value" %}

<table><thead><tr><th width="173.33333333333331">key</th><th width="180.93023255813955">data type</th><th>desc.</th></tr></thead><tbody><tr><td>page_offset</td><td>int64</td><td>PageID</td></tr><tr><td>page_size</td><td>int64</td><td>PageSize</td></tr><tr><td>total_count</td><td>int64</td><td>TotalCount</td></tr><tr><td></td><td></td><td></td></tr><tr><td>my_payments</td><td>array</td><td>결제내역 리스트</td></tr><tr><td>order_id</td><td>string</td><td>주문ID</td></tr><tr><td>payment_type</td><td>string</td><td>결제타입 (ex:WORLDPAYUSDBUMI)</td></tr><tr><td>fiat_code</td><td>string</td><td>화폐코드 (ex: USD)</td></tr><tr><td>fiat_amount</td><td>float64</td><td>결제금액</td></tr><tr><td>coin_code</td><td>string</td><td>코인코드(ex: MATIC)</td></tr><tr><td>coin_amount</td><td>float32</td><td>코인구매갯수</td></tr><tr><td>blockchain_code</td><td>string</td><td>메인넷심볼</td></tr><tr><td>blockchain_desc</td><td>string</td><td>메인넷이름</td></tr><tr><td>order_dt</td><td>string</td><td>주문서생성날자</td></tr><tr><td>order_status</td><td>string</td><td>주문상태 <a href="https://docs.banxa.com/docs/order-status">https://docs.banxa.com/docs/order-status</a></td></tr><tr><td></td><td></td><td></td></tr><tr><td></td><td></td><td></td></tr></tbody></table>

{% endtab %}

{% tab title="Result Code" %}

| return        | message | desc. |
| ------------- | ------- | ----- |
| 0             | success | 성공    |
|               |         |       |
| {% endtab %}  |         |       |
| {% endtabs %} |         |       |
