내 낙찰 목록

GET https://{market-domain}/v1.0/mypage/win/list

Query Parameters

Name
Type
Description

page_offset

int64

페이지 번호 (default : 1)

page_size

int64

페이지 크기 (default : 8)

Headers

Name
Type
Description

Authorization*

String

Bearer eyJhbGciOiJIUzI1NiI...

{
    "return": 0,
    "message": "success",
    "value": {
        "page_offset": 1,
        "page_size": 10,
        "total_count" : 1,
        "my_wins" : [
            {
                "thumbnail_path": "/thumbnail.jpg",
                "product_id": 58,
                "nft_pack_id": 103,
                "nft_pack_name": "funigloo Rank #4",
                "original_extension":"jpg",
                "explanation": "asdfas",
                "modified_date": "2022-06-07T05:13:32.313Z",
                "status": 5,
                "coin_id": 2,
                "quantity": 121.700679245
            }
        ]
    }
}

curl --location --request GET 'https://localhost:51071/v1.0/mypage/win/list' --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsI....'

Last updated