DELETE api/v2/Cart/Delete?id={id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

string

Required

Body Parameters

None.

Response Information

Resource Description

Multisponsor.NetCommerce.API.Models.V2.ResponseV2OfSystem.String
NameDescriptionTypeAdditional information
Status

boolean

None.

Message

Collection of Multisponsor.NetCommerce.API.Models.V2.MessageResultV2

None.

ObjectResponse

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Status": true,
  "Message": [
    {
      "Message": "sample string 1"
    },
    {
      "Message": "sample string 1"
    }
  ],
  "ObjectResponse": "sample string 2"
}

application/xml, text/xml

Sample:
<ResponseV2Ofstring xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Multisponsor.NetCommerce.API.Models.V2">
  <Message>
    <MessageResultV2>
      <Message>sample string 1</Message>
    </MessageResultV2>
    <MessageResultV2>
      <Message>sample string 1</Message>
    </MessageResultV2>
  </Message>
  <ObjectResponse>sample string 2</ObjectResponse>
  <Status>true</Status>
</ResponseV2Ofstring>