GET api/ShoppingCartDetail/{Id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
ShoppingCartDetail| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| ShoppingCartId | globally unique identifier |
None. |
|
| InvoiceId | globally unique identifier |
None. |
|
| InvoiceDetailId | globally unique identifier |
None. |
|
| ContactId | globally unique identifier |
None. |
|
| ProductId | globally unique identifier |
None. |
|
| RateId | globally unique identifier |
None. |
|
| ProductCode | string |
None. |
|
| Module | Module |
None. |
|
| DetailType | string |
None. |
|
| Name | string |
None. |
|
| Qty | integer |
None. |
|
| Price | decimal number |
None. |
|
| PromoCode | string |
None. |
|
| CycleStartDate | date |
None. |
|
| ParentId | globally unique identifier |
None. |
Response Formats
application/json, text/json
Sample:
{
"Id": "4d52ad2c-c904-4b9d-9d05-55d6563b5ff3",
"ShoppingCartId": "3a4830a7-f000-4964-a89d-e28ff6d51c45",
"InvoiceId": "ea9686c1-c7b7-45cc-a932-52be335b6689",
"InvoiceDetailId": "3cb36c4e-6970-4cc3-9311-373527c3027b",
"ContactId": "d9732c1e-626c-4d8a-871d-08efabd3dc1b",
"ProductId": "24d7d497-9175-4901-a3a5-bef706baf2fd",
"RateId": "2958b3b2-8998-437c-9b44-b36b18bcb292",
"ProductCode": "sample string 8",
"Module": 0,
"DetailType": "sample string 9",
"Name": "sample string 10",
"Qty": 11,
"Price": 12.0,
"PromoCode": "sample string 13",
"CycleStartDate": "2026-02-04T02:56:28.7118233+00:00",
"ParentId": "185ec106-9710-4bd3-9962-9a22d16bbb5c"
}
application/xml, text/xml
Sample:
<ShoppingCartDetail xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Protech.UX.API.ShoppingCart"> <ContactId>d9732c1e-626c-4d8a-871d-08efabd3dc1b</ContactId> <CycleStartDate>2026-02-04T02:56:28.7118233+00:00</CycleStartDate> <DetailType>sample string 9</DetailType> <Id>4d52ad2c-c904-4b9d-9d05-55d6563b5ff3</Id> <InvoiceDetailId>3cb36c4e-6970-4cc3-9311-373527c3027b</InvoiceDetailId> <InvoiceId>ea9686c1-c7b7-45cc-a932-52be335b6689</InvoiceId> <Module>Products</Module> <Name>sample string 10</Name> <ParentId>185ec106-9710-4bd3-9962-9a22d16bbb5c</ParentId> <Price>12</Price> <ProductCode>sample string 8</ProductCode> <ProductId>24d7d497-9175-4901-a3a5-bef706baf2fd</ProductId> <PromoCode>sample string 13</PromoCode> <Qty>11</Qty> <RateId>2958b3b2-8998-437c-9b44-b36b18bcb292</RateId> <ShoppingCartId>3a4830a7-f000-4964-a89d-e28ff6d51c45</ShoppingCartId> </ShoppingCartDetail>