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": "15e043d5-e03a-4b61-abe9-40bfbc8aee9a",
"ShoppingCartId": "45c8b001-d4be-4914-93a1-9b5cb67f298c",
"InvoiceId": "8cbbfd28-5649-412b-b4dc-460a73b1ad5a",
"InvoiceDetailId": "f7b2b412-65ad-4732-9ab9-ce3d3abe6622",
"ContactId": "1286205f-35a7-4d41-858b-eb29392cb0d2",
"ProductId": "fc56c7b9-49a0-4c64-b644-efae5880bf7d",
"RateId": "77f2bb63-d740-477e-94f7-926a75dd03f1",
"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-05-06T12:03:46.8635656+00:00",
"ParentId": "7b2e22c0-439e-4485-9ead-2fc10bc94de0"
}
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>1286205f-35a7-4d41-858b-eb29392cb0d2</ContactId> <CycleStartDate>2026-05-06T12:03:46.8635656+00:00</CycleStartDate> <DetailType>sample string 9</DetailType> <Id>15e043d5-e03a-4b61-abe9-40bfbc8aee9a</Id> <InvoiceDetailId>f7b2b412-65ad-4732-9ab9-ce3d3abe6622</InvoiceDetailId> <InvoiceId>8cbbfd28-5649-412b-b4dc-460a73b1ad5a</InvoiceId> <Module>Products</Module> <Name>sample string 10</Name> <ParentId>7b2e22c0-439e-4485-9ead-2fc10bc94de0</ParentId> <Price>12</Price> <ProductCode>sample string 8</ProductCode> <ProductId>fc56c7b9-49a0-4c64-b644-efae5880bf7d</ProductId> <PromoCode>sample string 13</PromoCode> <Qty>11</Qty> <RateId>77f2bb63-d740-477e-94f7-926a75dd03f1</RateId> <ShoppingCartId>45c8b001-d4be-4914-93a1-9b5cb67f298c</ShoppingCartId> </ShoppingCartDetail>