POST api/cart/delete-cart-stones

Request Information

URI Parameters

None.

Body Parameters

ReqCartStones
NameDescriptionTypeAdditional information
LOGIN_USER_SEQ

integer

None.

TOKEN_NO

string

None.

STONES

Collection of CartStones

None.

Request Formats

application/json, text/json

Sample:
{
  "LOGIN_USER_SEQ": 1,
  "TOKEN_NO": "sample string 2",
  "STONES": [
    {
      "PACKET_NO": "sample string 1",
      "USER_SEQ": 2
    },
    {
      "PACKET_NO": "sample string 1",
      "USER_SEQ": 2
    }
  ]
}

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 'ReqCartStones'.

Response Information

Resource Description

ResponseMessage
NameDescriptionTypeAdditional information
STATUS

string

None.

MESSAGE

string

None.

VALUE

string

None.

Response Formats

application/json, text/json

Sample:
{
  "STATUS": "sample string 1",
  "MESSAGE": "sample string 2",
  "VALUE": "sample string 3"
}