Retrieves the equipment family with the specified key.
Request Information
URI Parameters :
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
The equipment family id. |
globally unique identifier |
Required |
Body Parameters :
None.
Response Information
Resource Description :
IHttpActionResult containing the equipment family, or 404 Not Found if it doesn't exist.
equipment_family| Name | Description | Type | Additional 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": "eadb1477-1f2e-42c4-8052-ef4a700237e6",
"name": "sample string 2",
"_parent_id": "40c1c113-83c1-4c6e-9115-410d96e77bc5",
"sales_organization_id": "d572aee2-242c-4bed-8f4f-74625c9149ab",
"archived": true,
"modified_dateutc": "2026-09-16T09:25:29.3952213+00:00"
}
application/xml, text/xml
Sample:
<equipment_family xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <_parent_id>40c1c113-83c1-4c6e-9115-410d96e77bc5</_parent_id> <archived>true</archived> <id>eadb1477-1f2e-42c4-8052-ef4a700237e6</id> <modified_dateutc>2026-09-16T09:25:29.395Z</modified_dateutc> <name>sample string 2</name> <sales_organization_id>d572aee2-242c-4bed-8f4f-74625c9149ab</sales_organization_id> </equipment_family>