PUT api/ShoppingCartDetail/{Id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
Required |
Body Parameters
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. |
Request Formats
application/json, text/json
Sample:
{
"Id": "b6c7683b-e90a-413f-a1ab-2a91146aaca8",
"ShoppingCartId": "a6055a17-ac2a-4822-be90-9a82b03a691d",
"InvoiceId": "ea4ab599-621d-4c73-8796-92d591476c36",
"InvoiceDetailId": "157c3dba-78a7-4e16-978d-b94963935b34",
"ContactId": "8e541e7f-f711-4b7d-a965-a2dd92a28bd1",
"ProductId": "c487ab97-c2f4-49ac-9ec8-f8378f38536b",
"RateId": "4104dbbf-cebc-4fc5-9670-02873b98a141",
"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:13.1618106+00:00",
"ParentId": "b79c7c0e-b025-486f-b1c7-6ed0aacf200c"
}
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>8e541e7f-f711-4b7d-a965-a2dd92a28bd1</ContactId> <CycleStartDate>2026-09-19T09:28:13.1618106+00:00</CycleStartDate> <DetailType>sample string 9</DetailType> <Id>b6c7683b-e90a-413f-a1ab-2a91146aaca8</Id> <InvoiceDetailId>157c3dba-78a7-4e16-978d-b94963935b34</InvoiceDetailId> <InvoiceId>ea4ab599-621d-4c73-8796-92d591476c36</InvoiceId> <Module>Products</Module> <Name>sample string 10</Name> <ParentId>b79c7c0e-b025-486f-b1c7-6ed0aacf200c</ParentId> <Price>12</Price> <ProductCode>sample string 8</ProductCode> <ProductId>c487ab97-c2f4-49ac-9ec8-f8378f38536b</ProductId> <PromoCode>sample string 13</PromoCode> <Qty>11</Qty> <RateId>4104dbbf-cebc-4fc5-9670-02873b98a141</RateId> <ShoppingCartId>a6055a17-ac2a-4822-be90-9a82b03a691d</ShoppingCartId> </ShoppingCartDetail>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
APIResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Status | Status |
None. |
|
| Id | globally unique identifier |
None. |
|
| Description | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Status": 0,
"Id": "8dd87851-99cf-49dd-9d2f-47b530ffaced",
"Description": "sample string 2"
}
application/xml, text/xml
Sample:
<APIResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Protech.UX.API.Response"> <Description>sample string 2</Description> <Id>8dd87851-99cf-49dd-9d2f-47b530ffaced</Id> <Status>Success</Status> </APIResponse>