Retrieves the contract discount feelist price with the specified key

Request Information

URI Parameters :

NameDescriptionTypeAdditional information
id

globally unique identifier

Required

Body Parameters :

None.

Response Information

Resource Description :

IHttpActionResult

contract_discount_feelist_price
NameDescriptionTypeAdditional 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": "903a6ffa-7514-4b84-99cb-2b524d8b2e43",
  "contract_id": "a83919d1-1304-4531-af9a-775164ad02d2",
  "feelist_price_id": "b9eaa674-084a-4d68-961e-e3aa9a296f9b",
  "excluded_from_warranty": true,
  "discount_date_start": "2026-01-12T00:22:03.9378239+00:00",
  "discount_date_end": "2026-01-12T00:22:03.9378239+00:00",
  "discount_percentage": 7.0,
  "modified_dateutc": "2026-01-12T00:22:03.9378239+00:00"
}

application/xml, text/xml

Sample:
<contract_discount_feelist_price xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <contract_id>a83919d1-1304-4531-af9a-775164ad02d2</contract_id>
  <discount_date_end>2026-01-12T00:22:03.937Z</discount_date_end>
  <discount_date_start>2026-01-12T00:22:03.937Z</discount_date_start>
  <discount_percentage>7</discount_percentage>
  <excluded_from_warranty>true</excluded_from_warranty>
  <feelist_price_id>b9eaa674-084a-4d68-961e-e3aa9a296f9b</feelist_price_id>
  <id>903a6ffa-7514-4b84-99cb-2b524d8b2e43</id>
  <modified_dateutc>2026-01-12T00:22:03.937Z</modified_dateutc>
</contract_discount_feelist_price>