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": "f80e0bd7-fd7a-4171-b544-51b76efc7e6c",
"ShoppingCartId": "94f77d8f-ed49-41d2-ac32-63d54f515bce",
"InvoiceId": "8046a757-8d3c-411c-8a5c-b83628b374e7",
"InvoiceDetailId": "c743bcff-3cf0-4d45-881e-47c46ee76251",
"ContactId": "eb887ac3-c4e7-4ab7-bca9-e36a83280293",
"ProductId": "b52fa970-2e8e-4274-b917-4bb9dfc97335",
"RateId": "63d9ec79-684d-4c95-bb87-40d6269eb377",
"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-08-04T22:14:43.4046185+00:00",
"ParentId": "5fb6db83-aa73-46e2-9d5e-d0ef9ef9a359"
}
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>eb887ac3-c4e7-4ab7-bca9-e36a83280293</ContactId> <CycleStartDate>2026-08-04T22:14:43.4046185+00:00</CycleStartDate> <DetailType>sample string 9</DetailType> <Id>f80e0bd7-fd7a-4171-b544-51b76efc7e6c</Id> <InvoiceDetailId>c743bcff-3cf0-4d45-881e-47c46ee76251</InvoiceDetailId> <InvoiceId>8046a757-8d3c-411c-8a5c-b83628b374e7</InvoiceId> <Module>Products</Module> <Name>sample string 10</Name> <ParentId>5fb6db83-aa73-46e2-9d5e-d0ef9ef9a359</ParentId> <Price>12</Price> <ProductCode>sample string 8</ProductCode> <ProductId>b52fa970-2e8e-4274-b917-4bb9dfc97335</ProductId> <PromoCode>sample string 13</PromoCode> <Qty>11</Qty> <RateId>63d9ec79-684d-4c95-bb87-40d6269eb377</RateId> <ShoppingCartId>94f77d8f-ed49-41d2-ac32-63d54f515bce</ShoppingCartId> </ShoppingCartDetail>