상품 입찰 리스트
GET https://{market-domain}/v1.0/product/bid/list
Query Parameters
Name
Type
Description
product_id*
int64
상품ID
page_offset
int64
페이지 번호 (default:1)
page_size
int64
페이지 크기 (default:10)
{
"return": 0,
"message": "success",
"value": {
"page_offset": 0,
"page_size": 0,
"product_bid_list": [
"inno_uid" : "fdsfjdsklfads..",
"coin_id" : 1,
"quantity" : 10.111,
"bid_stauts" : 1,
"create_date" : "1900-01-01T00:00:00Z"
]
}
}curl --location --request GET 'https://{dashboard-domain}/v1.0/product/bid/list?product_id=6&page_offset=1&page_size=10'
key
data type
desc.
page_offset
int64
페이지 번호
page_size
int64
페이지 크기
total_count
int64
product_bid_list
array
입찰자 리스트
inno_uid
string
입찰자 이노UID
coin_id
int64
코인ID
quantity
float64
입찰 수량
bid_stauts
int8
입찰 상태 1: 입찰 2: 낙찰 3: 낙찰포기
create_date
string
생성일시
return
message
desc.
0
success
성공
Last updated