Retrieves the company discount family with the specified key.

Request Information

URI Parameters :

NameDescriptionTypeAdditional information
id

The company discount family id.

globally unique identifier

Required

Body Parameters :

None.

Response Information

Resource Description :

IHttpActionResult containing the company discount family, or 404 Not Found if it doesn't exist.

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": "e021b143-783f-4dfa-9436-108d62c041b4",
  "name": "sample string 2",
  "discount": 3.0,
  "sales_organization_id": "69b6d977-63b8-40e1-827a-69bd98351c46",
  "modified_dateutc": "2026-09-16T09:25:23.8852957+00:00"
}

application/xml, text/xml

Sample:
<company_discount_family xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <discount>3</discount>
  <id>e021b143-783f-4dfa-9436-108d62c041b4</id>
  <modified_dateutc>2026-09-16T09:25:23.885Z</modified_dateutc>
  <name>sample string 2</name>
  <sales_organization_id>69b6d977-63b8-40e1-827a-69bd98351c46</sales_organization_id>
</company_discount_family>