입찰 정보 확인 (입찰가능여부)
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.....'
Last updated