Retrieves the equipment_family object with the specified key
Request Information
URI Parameters :
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
Body Parameters :
None.
Response Information
Resource Description :
IHttpActionResult
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 | boolean | ||
| modified_dateutc |
Readonly system field managed by database, filled with GetUtcDate when adding,updating |
date |
Response Formats
application/json, text/json
Sample:
{
"id": "eb301ad5-0ea0-4575-a4dd-e52378be01e5",
"name": "sample string 2",
"_parent_id": "244721ca-df8e-4783-8850-7f553a35b9e8",
"sales_organization_id": "87849f28-62c5-4aeb-9081-cca755e9860b",
"archived": true,
"modified_dateutc": "2026-03-07T14:54:53.518732+00:00"
}
application/xml, text/xml
Sample:
<equipment_family xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <_parent_id>244721ca-df8e-4783-8850-7f553a35b9e8</_parent_id> <archived>true</archived> <id>eb301ad5-0ea0-4575-a4dd-e52378be01e5</id> <modified_dateutc>2026-03-07T14:54:53.518Z</modified_dateutc> <name>sample string 2</name> <sales_organization_id>87849f28-62c5-4aeb-9081-cca755e9860b</sales_organization_id> </equipment_family>