Retrieves all the equipment_family objects
Request Information
URI Parameters :
None.
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": "49992b6b-92e6-4d75-8612-9bcf5607128e",
"name": "sample string 2",
"_parent_id": "9117c123-a109-48f8-a99e-8f587452ca50",
"sales_organization_id": "b8d990fc-4ff8-4ef8-9e66-7368ce6e9389",
"archived": true,
"modified_dateutc": "2026-06-16T21:23:43.847854+00:00"
}
application/xml, text/xml
Sample:
<equipment_family xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <_parent_id>9117c123-a109-48f8-a99e-8f587452ca50</_parent_id> <archived>true</archived> <id>49992b6b-92e6-4d75-8612-9bcf5607128e</id> <modified_dateutc>2026-06-16T21:23:43.847Z</modified_dateutc> <name>sample string 2</name> <sales_organization_id>b8d990fc-4ff8-4ef8-9e66-7368ce6e9389</sales_organization_id> </equipment_family>