Retrieves all equipment families, optionally filtered via OData query options.

Request Information

URI Parameters :

None.

Body Parameters :

None.

Response Information

Resource Description :

IHttpActionResult containing the list of equipment families.

equipment_family
NameDescriptionTypeAdditional information
id

Primary Key

globally unique identifier

Required

name

Name of the equipment family

string

Required

Max length: 50

_parent_id

Parent Equipment Family (Parent / Child) when adding/updating equipment_family

globally unique identifier
sales_organization_id

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

globally unique identifier
archived

Indicates whether this equipment family has been archived (no longer selectable).

boolean
modified_dateutc

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

date

Response Formats

application/json, text/json

Sample:
{
  "id": "4dbab4fc-3585-4df5-9765-be7f0a573c77",
  "name": "sample string 2",
  "_parent_id": "b815e463-2db7-4e56-8834-5cdff96b6b4a",
  "sales_organization_id": "f56cd549-132d-4760-ad93-319abc83e6a8",
  "archived": true,
  "modified_dateutc": "2026-09-16T08:37:16.5353847+00:00"
}

application/xml, text/xml

Sample:
<equipment_family xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <_parent_id>b815e463-2db7-4e56-8834-5cdff96b6b4a</_parent_id>
  <archived>true</archived>
  <id>4dbab4fc-3585-4df5-9765-be7f0a573c77</id>
  <modified_dateutc>2026-09-16T08:37:16.535Z</modified_dateutc>
  <name>sample string 2</name>
  <sales_organization_id>f56cd549-132d-4760-ad93-319abc83e6a8</sales_organization_id>
</equipment_family>