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": "e4af7e33-8bc1-41fb-9af6-28ba35c55151",
"ShoppingCartId": "2be76589-77a2-4e33-9474-6a5a98593a21",
"InvoiceId": "71f70151-614d-4e98-8698-9833a4d8ed14",
"InvoiceDetailId": "40780479-5340-4ad4-8979-6dddd7450f2b",
"ContactId": "2c9d9f29-b023-4f00-b2f9-8b7523069848",
"ProductId": "d30171e6-8a72-4da5-9e89-784a6108c1c4",
"RateId": "f477a51f-f834-4909-8fc6-d1f35de6e303",
"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-03-21T22:01:48.0133029+00:00",
"ParentId": "9b05ca9f-e082-49dd-b442-ca5be600a374"
}
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>2c9d9f29-b023-4f00-b2f9-8b7523069848</ContactId> <CycleStartDate>2026-03-21T22:01:48.0133029+00:00</CycleStartDate> <DetailType>sample string 9</DetailType> <Id>e4af7e33-8bc1-41fb-9af6-28ba35c55151</Id> <InvoiceDetailId>40780479-5340-4ad4-8979-6dddd7450f2b</InvoiceDetailId> <InvoiceId>71f70151-614d-4e98-8698-9833a4d8ed14</InvoiceId> <Module>Products</Module> <Name>sample string 10</Name> <ParentId>9b05ca9f-e082-49dd-b442-ca5be600a374</ParentId> <Price>12</Price> <ProductCode>sample string 8</ProductCode> <ProductId>d30171e6-8a72-4da5-9e89-784a6108c1c4</ProductId> <PromoCode>sample string 13</PromoCode> <Qty>11</Qty> <RateId>f477a51f-f834-4909-8fc6-d1f35de6e303</RateId> <ShoppingCartId>2be76589-77a2-4e33-9474-6a5a98593a21</ShoppingCartId> </ShoppingCartDetail>