GET api/ShoppingCartDetail/{Id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
Id

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

ShoppingCartDetail
NameDescriptionTypeAdditional 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": "e6f4dba4-89e9-492c-8bba-838d4f1f765a",
  "ShoppingCartId": "149a4696-9c14-45ab-bced-fbeb1f306894",
  "InvoiceId": "a5b3f4a4-f78c-4db4-8d70-d1e8ae30ecc9",
  "InvoiceDetailId": "5108b979-bb59-4e00-900e-7261c19a70a1",
  "ContactId": "48058b16-9fae-49e9-86bb-e0be2b74a0a6",
  "ProductId": "00ec43d0-324e-488d-9980-eb0cfc27224b",
  "RateId": "ac09eba2-423f-4aee-a8a4-dc3dac9b8d57",
  "ProductCode": "sample string 8",
  "Module": 0,
  "DetailType": "sample string 9",
  "Name": "sample string 10",
  "Qty": 11,
  "Price": 12.0,
  "PromoCode": "sample string 13",
  "CycleStartDate": "2025-08-31T05:48:31.2022749+00:00",
  "ParentId": "8f6f3596-d596-43c9-8b37-0c42ae87f380"
}

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>48058b16-9fae-49e9-86bb-e0be2b74a0a6</ContactId>
  <CycleStartDate>2025-08-31T05:48:31.2022749+00:00</CycleStartDate>
  <DetailType>sample string 9</DetailType>
  <Id>e6f4dba4-89e9-492c-8bba-838d4f1f765a</Id>
  <InvoiceDetailId>5108b979-bb59-4e00-900e-7261c19a70a1</InvoiceDetailId>
  <InvoiceId>a5b3f4a4-f78c-4db4-8d70-d1e8ae30ecc9</InvoiceId>
  <Module>Products</Module>
  <Name>sample string 10</Name>
  <ParentId>8f6f3596-d596-43c9-8b37-0c42ae87f380</ParentId>
  <Price>12</Price>
  <ProductCode>sample string 8</ProductCode>
  <ProductId>00ec43d0-324e-488d-9980-eb0cfc27224b</ProductId>
  <PromoCode>sample string 13</PromoCode>
  <Qty>11</Qty>
  <RateId>ac09eba2-423f-4aee-a8a4-dc3dac9b8d57</RateId>
  <ShoppingCartId>149a4696-9c14-45ab-bced-fbeb1f306894</ShoppingCartId>
</ShoppingCartDetail>