POST api/cart/get-bid-calc

Request Information

URI Parameters

None.

Body Parameters

UserToken
NameDescriptionTypeAdditional information
USER_SEQ

integer

None.

TOKAN_NO

string

None.

SEQ_NO

integer

None.

TRANS_NO

integer

None.

CONFIRM

boolean

None.

VALUE

string

None.

Request Formats

application/json, text/json

Sample:
{
  "USER_SEQ": 1,
  "TOKAN_NO": "sample string 2",
  "SEQ_NO": 3,
  "TRANS_NO": 4,
  "CONFIRM": true,
  "VALUE": "sample string 6"
}

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'UserToken'.

Response Information

Resource Description

BidCalcResponse
NameDescriptionTypeAdditional information
data

BID_CALC

None.

Status

string

None.

Message

string

None.

Response Formats

application/json, text/json

Sample:
{
  "data": {
    "USER_SEQ": 1,
    "TOTAL": 2,
    "CARAT": 3.0,
    "VALUE": 4.0,
    "NET_VALUE": 5.0,
    "DISCOUNT": 6.0,
    "BID_DISCOUNT": 7.0,
    "BID_NET_RATE": 8.0,
    "BID_NET_VALUE": 9.0,
    "PACKET_LIST": "sample string 10"
  },
  "Status": "sample string 1",
  "Message": "sample string 2"
}