POST api/PurchaseCart
Request Information
URI Parameters
None.
Body Parameters
Collection of PurchaseCartBL| Name | Description | Type | Additional information |
|---|---|---|---|
| PurchaseRecordId | integer |
None. |
|
| PurchaseCartId | string |
None. |
|
| ProductId | integer |
None. |
|
| Count | integer |
None. |
|
| IsActive | boolean |
None. |
|
| CreatedDate | date |
None. |
|
| ProductName | string |
None. |
Request Formats
application/json, text/json
Sample:
[
{
"PurchaseRecordId": 1,
"PurchaseCartId": "sample string 2",
"ProductId": 1,
"Count": 1,
"IsActive": true,
"CreatedDate": "2025-12-06T04:35:50.6220879Z",
"ProductName": "sample string 3"
},
{
"PurchaseRecordId": 1,
"PurchaseCartId": "sample string 2",
"ProductId": 1,
"Count": 1,
"IsActive": true,
"CreatedDate": "2025-12-06T04:35:50.6220879Z",
"ProductName": "sample string 3"
}
]
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
PurchaseCartBL| Name | Description | Type | Additional information |
|---|---|---|---|
| PurchaseRecordId | integer |
None. |
|
| PurchaseCartId | string |
None. |
|
| ProductId | integer |
None. |
|
| Count | integer |
None. |
|
| IsActive | boolean |
None. |
|
| CreatedDate | date |
None. |
|
| ProductName | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"PurchaseRecordId": 1,
"PurchaseCartId": "sample string 2",
"ProductId": 1,
"Count": 1,
"IsActive": true,
"CreatedDate": "2025-12-06T04:35:50.6377364Z",
"ProductName": "sample string 3"
}