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": "78904184-2779-4bfa-9b9f-8a0e82877519",
"ShoppingCartId": "7c8d6ce8-87de-47b3-93f1-8cfebab277b9",
"InvoiceId": "f4e4f052-61b4-415b-b73d-f9d91dd224b0",
"InvoiceDetailId": "cf2deb1a-d599-4f2d-ad36-8c66ddaffdf0",
"ContactId": "5a300852-143f-40b6-8a0b-a33ed9702a1e",
"ProductId": "a2a3b0bf-a451-4c20-8323-d58cda9243cc",
"RateId": "63a76d6f-285b-4b58-b9f9-a0ae6e670b99",
"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-06-20T19:58:59.3639892+00:00",
"ParentId": "85d47574-d348-4897-8275-b2a06bf6ac22"
}
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>5a300852-143f-40b6-8a0b-a33ed9702a1e</ContactId> <CycleStartDate>2026-06-20T19:58:59.3639892+00:00</CycleStartDate> <DetailType>sample string 9</DetailType> <Id>78904184-2779-4bfa-9b9f-8a0e82877519</Id> <InvoiceDetailId>cf2deb1a-d599-4f2d-ad36-8c66ddaffdf0</InvoiceDetailId> <InvoiceId>f4e4f052-61b4-415b-b73d-f9d91dd224b0</InvoiceId> <Module>Products</Module> <Name>sample string 10</Name> <ParentId>85d47574-d348-4897-8275-b2a06bf6ac22</ParentId> <Price>12</Price> <ProductCode>sample string 8</ProductCode> <ProductId>a2a3b0bf-a451-4c20-8323-d58cda9243cc</ProductId> <PromoCode>sample string 13</PromoCode> <Qty>11</Qty> <RateId>63a76d6f-285b-4b58-b9f9-a0ae6e670b99</RateId> <ShoppingCartId>7c8d6ce8-87de-47b3-93f1-8cfebab277b9</ShoppingCartId> </ShoppingCartDetail>