POST api/Cart/Status
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
CartStatusResult| Name | Description | Type | Additional information |
|---|---|---|---|
| CartStatus | CartStatus |
None. |
|
| Errors | APIErrors |
None. |
Response Formats
application/json, text/json
Sample:
{
"CartStatus": {
"Enabled": true
},
"Errors": {
"HasErrors": true,
"ErrorList": [
{
"Message": "sample string 1",
"Source": "sample string 2"
},
{
"Message": "sample string 1",
"Source": "sample string 2"
}
]
}
}
application/xml, text/xml
Sample:
<CartStatusResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Mastersoft.BigDipper.Entities">
<Errors xmlns="http://schemas.datacontract.org/2004/07/Mastersoft.BigDipper.Entities.Domain">
<ErrorList>
<APIErrorMessage>
<Message>sample string 1</Message>
<Source>sample string 2</Source>
</APIErrorMessage>
<APIErrorMessage>
<Message>sample string 1</Message>
<Source>sample string 2</Source>
</APIErrorMessage>
</ErrorList>
<HasErrors>true</HasErrors>
</Errors>
<CartStatus xmlns:d2p1="http://schemas.datacontract.org/2004/07/Mastersoft.BigDipper.Entities.Domain">
<d2p1:Enabled>true</d2p1:Enabled>
</CartStatus>
</CartStatusResult>