POST Api/CustomPriceRng/GetCustomPrcRngLstByCond
Request Information
URI Parameters
None.
Body Parameters
CustomPrcRngPageInfo| Name | Description | Type | Additional information |
|---|---|---|---|
| Condition | CustomPrcRngSrchCond |
None. |
Request Formats
application/json, text/json
Sample:
{
"Condition": {
"Id": 1,
"MinValue": 1.0,
"MaxValue": 1.0,
"Currency": "sample string 2",
"CatId": 1
}
}
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Collection of CustomPriceRangeView| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| MinValue | decimal number |
None. |
|
| MaxValue | decimal number |
None. |
|
| Range | string |
None. |
|
| RangeDesc | string |
None. |
|
| Currency | string |
None. |
|
| CatId | integer |
None. |
|
| CatName | string |
None. |
|
| IsNew | boolean |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": 1,
"MinValue": 1.0,
"MaxValue": 1.0,
"Range": "sample string 2",
"RangeDesc": "sample string 3",
"Currency": "sample string 4",
"CatId": 1,
"CatName": "sample string 5",
"IsNew": true
},
{
"Id": 1,
"MinValue": 1.0,
"MaxValue": 1.0,
"Range": "sample string 2",
"RangeDesc": "sample string 3",
"Currency": "sample string 4",
"CatId": 1,
"CatName": "sample string 5",
"IsNew": true
}
]