내 결제 목록
록
GET
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*
String
Bearer eyJhbGciOiJIUzI1NiI...
```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"
}
]
}
}
```
curl --location --request GET 'https://localhost:51071/v1.0/mypage/payment/list' --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsI....'
Last updated