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