Retrieves all company discount families, optionally filtered via OData query options.

Request Information

URI Parameters :

None.

Body Parameters :

None.

Response Information

Resource Description :

IHttpActionResult containing the list of company discount families.

company_discount_family
NameDescriptionTypeAdditional information
id

Primary Key

globally unique identifier
name

Name of this discount family.

string
discount

Default discount percentage applied to companies in this discount family.

decimal number
sales_organization_id

FK of sales_organization. Filled if specific of one SO, empty if can be used by all.

globally unique identifier
modified_dateutc

Readonly system field managed by database, filled with GetUtcDate when adding,updating

date

Response Formats

application/json, text/json

Sample:
{
  "id": "e056b5a1-6dca-4e90-8746-4c0329ebb7bf",
  "name": "sample string 2",
  "discount": 3.0,
  "sales_organization_id": "e4eb286f-0bc7-48c9-bfc3-5fd2c06d6427",
  "modified_dateutc": "2026-09-16T08:37:17.9049361+00:00"
}

application/xml, text/xml

Sample:
<company_discount_family xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <discount>3</discount>
  <id>e056b5a1-6dca-4e90-8746-4c0329ebb7bf</id>
  <modified_dateutc>2026-09-16T08:37:17.904Z</modified_dateutc>
  <name>sample string 2</name>
  <sales_organization_id>e4eb286f-0bc7-48c9-bfc3-5fd2c06d6427</sales_organization_id>
</company_discount_family>