Retrieves the equipment_family object with the specified key

Request Information

URI Parameters :

NameDescriptionTypeAdditional information
id

globally unique identifier

Required

Body Parameters :

None.

Response Information

Resource Description :

IHttpActionResult

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

boolean
modified_dateutc

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

date

Response Formats

application/json, text/json

Sample:
{
  "id": "3fcdcd66-8ece-4254-96f8-b23edfe54275",
  "name": "sample string 2",
  "_parent_id": "3e09fa9c-017c-4d81-aa2f-3b08a04bb8e4",
  "sales_organization_id": "ca318927-4315-4960-92fe-2ef1324000a9",
  "archived": true,
  "modified_dateutc": "2026-01-12T00:22:09.3495962+00:00"
}

application/xml, text/xml

Sample:
<equipment_family xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <_parent_id>3e09fa9c-017c-4d81-aa2f-3b08a04bb8e4</_parent_id>
  <archived>true</archived>
  <id>3fcdcd66-8ece-4254-96f8-b23edfe54275</id>
  <modified_dateutc>2026-01-12T00:22:09.349Z</modified_dateutc>
  <name>sample string 2</name>
  <sales_organization_id>ca318927-4315-4960-92fe-2ef1324000a9</sales_organization_id>
</equipment_family>