입찰 정보 확인 (입찰가능여부)
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......
```json
{
"return": 0,
"message": "success",
"value": {
"bid_deposit_status": 3,
"bid_deposit_coin_id": 1,
"bid_deposit_quantity": 0.002,
"wallet_address": "0x852ff28a4c79Fb213c30513C82bA8913F28d7F60",
"my_coin_id": 1,
"my_coin_quantity": 524.9876
}
}
```curl --location --request GET 'https://{dashboard-domain}/v1.0/product/bid?product_id=7' --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXV.....'
key
date type
desc
bid_deposit_status
int64
0: 보증금 미납
1: 보증금 납부 시작
2: 보증금 납부 처리중(결제완료)
3: 보증금 납부 완료
4: 보증금 환급 처리중
5: 보증금 환급 완료
6: 보증금 환급 대상 제외bid_deposit_coin_id
int64
입찰보증금 코인ID
bid_deposit_quantity
float64
입찰보증금
wallet_address
string
구매자 지갑주소
exists_purchase
bool
진행중인 결제 존재 여부(true면 결제중인게있음)
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