입찰 정보 확인 (입찰가능여부)
GET https://{market-domain}/v1.0/product/bid
Query Parameters
Name
Type
Description
product_id*
int64
상품ID
Headers
Name
Type
Description
Authorization*
String
Bearer eyJhbGciOiJIUzI1NiIsI......
// success
{
"return": 0,
"message": "success"
}
//fail
{
"return": 64203,
"message": "Product information has been updated. try again"
}
{
"return": 64202,
"message": "This is not payment deposit"
}curl --location --request GET 'https://{dashboard-domain}/v1.0/product/bid?product_id=7' --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXV.....'
key
date type
desc
is_deposit_payment
bool
true:납부, false:미납부
bid_deposit_coin_id
int64
입찰보증금 코인ID
bid_deposit_quantity
float64
입찰보증금
wallet_address
string
구매자 지갑주소
my_coin_id
int64
구매자coinID
my_coin_quantity
float64
구매자코인갯수
return
message
desc.
0
success
성공
64017
Product Get Bid Deposit Load Failed
제품 가져오기 입찰 보증금 로드 실패
64201
This is not an auction item
경매상품이아니다(상품 상태 이상)
64203
Product information has been updated. try again
상품정보가 업데이트되었으니 다시시도
Last updated