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": "a5a27b6c-95b0-4d68-828f-e2c109e3bf09",
"ShoppingCartId": "3c72df71-3470-496d-8888-e687f8dee095",
"InvoiceId": "3a84d30b-e72c-4e73-9231-667def2c2990",
"InvoiceDetailId": "7b44267c-a65a-4895-846f-eaf02cfd0f9f",
"ContactId": "f836e75a-982b-44c9-b284-a06329059380",
"ProductId": "770b1651-091f-423d-86dd-06c63c17218b",
"RateId": "0603d072-2733-40e2-8fcc-dd2792ceaafe",
"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-09-19T09:28:12.2711742+00:00",
"ParentId": "a574fc14-1760-4486-861c-838706d861a5"
}
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>f836e75a-982b-44c9-b284-a06329059380</ContactId> <CycleStartDate>2026-09-19T09:28:12.2711742+00:00</CycleStartDate> <DetailType>sample string 9</DetailType> <Id>a5a27b6c-95b0-4d68-828f-e2c109e3bf09</Id> <InvoiceDetailId>7b44267c-a65a-4895-846f-eaf02cfd0f9f</InvoiceDetailId> <InvoiceId>3a84d30b-e72c-4e73-9231-667def2c2990</InvoiceId> <Module>Products</Module> <Name>sample string 10</Name> <ParentId>a574fc14-1760-4486-861c-838706d861a5</ParentId> <Price>12</Price> <ProductCode>sample string 8</ProductCode> <ProductId>770b1651-091f-423d-86dd-06c63c17218b</ProductId> <PromoCode>sample string 13</PromoCode> <Qty>11</Qty> <RateId>0603d072-2733-40e2-8fcc-dd2792ceaafe</RateId> <ShoppingCartId>3c72df71-3470-496d-8888-e687f8dee095</ShoppingCartId> </ShoppingCartDetail>