Retrieves all contract discount fee list price rules, optionally filtered via OData query options.
Request Information
URI Parameters :
None.
Body Parameters :
None.
Response Information
Resource Description :
IHttpActionResult containing the list of contract discount fee list price rules.
contract_discount_feelist_price| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
Primary key |
globally unique identifier |
Required |
| contract_id |
Contract id |
globally unique identifier | |
| feelist_price_id |
Feelist price id |
globally unique identifier | |
| excluded_from_warranty |
Excluded from warranty? |
boolean | |
| discount_date_start |
Discount date start |
date | |
| discount_date_end |
Discount date end |
date | |
| discount_percentage |
Discount percentage |
decimal number | |
| modified_dateutc |
Readonly system field managed by database, filled with GetUtcDate when adding,updating |
date |
Response Formats
application/json, text/json
Sample:
{
"id": "91a6b4bf-b809-483d-ab7c-a200cc17e017",
"contract_id": "0accf5cb-221d-45d6-b913-1bb27d956c83",
"feelist_price_id": "f1057e42-635f-4303-a7a9-56197352f64d",
"excluded_from_warranty": true,
"discount_date_start": "2026-09-14T10:18:22.7207106+00:00",
"discount_date_end": "2026-09-14T10:18:22.7207106+00:00",
"discount_percentage": 7.0,
"modified_dateutc": "2026-09-14T10:18:22.7207106+00:00"
}
application/xml, text/xml
Sample:
<contract_discount_feelist_price xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <contract_id>0accf5cb-221d-45d6-b913-1bb27d956c83</contract_id> <discount_date_end>2026-09-14T10:18:22.720Z</discount_date_end> <discount_date_start>2026-09-14T10:18:22.720Z</discount_date_start> <discount_percentage>7</discount_percentage> <excluded_from_warranty>true</excluded_from_warranty> <feelist_price_id>f1057e42-635f-4303-a7a9-56197352f64d</feelist_price_id> <id>91a6b4bf-b809-483d-ab7c-a200cc17e017</id> <modified_dateutc>2026-09-14T10:18:22.720Z</modified_dateutc> </contract_discount_feelist_price>