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

Request Information

URI Parameters :

None.

Body Parameters :

None.

Response Information

Resource Description :

IHttpActionResult containing the list of equipment models.

equipment_model
NameDescriptionTypeAdditional information
id

Primary Key

globally unique identifier
name

Name of the equipment model

string

Required

Max length: 50

equipment_brand_id

FK Of Equipment brand

globally unique identifier
equipment_family_id

FK Of 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
warranty_period_nb_months

value needed to compute some date when creating an installation

integer
replacement_period_nb_months

value needed to compute some date when creating an installation

integer
modified_dateutc

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

date

Response Formats

application/json, text/json

Sample:
{
  "id": "721af643-7e97-4932-b38d-776e8ffe2d49",
  "name": "sample string 2",
  "equipment_brand_id": "04acd359-5629-48e5-bec8-ba745f03ec4f",
  "equipment_family_id": "2fe9aea8-e01b-486a-bb2f-365c8e7b32c5",
  "sales_organization_id": "bbb819df-9860-449e-bbeb-0e4acdeb143c",
  "warranty_period_nb_months": 6,
  "replacement_period_nb_months": 7,
  "modified_dateutc": "2026-09-16T10:14:18.6677261+00:00"
}

application/xml, text/xml

Sample:
<equipment_model xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <equipment_brand_id>04acd359-5629-48e5-bec8-ba745f03ec4f</equipment_brand_id>
  <equipment_family_id>2fe9aea8-e01b-486a-bb2f-365c8e7b32c5</equipment_family_id>
  <id>721af643-7e97-4932-b38d-776e8ffe2d49</id>
  <modified_dateutc>2026-09-16T10:14:18.667Z</modified_dateutc>
  <name>sample string 2</name>
  <replacement_period_nb_months>7</replacement_period_nb_months>
  <sales_organization_id>bbb819df-9860-449e-bbeb-0e4acdeb143c</sales_organization_id>
  <warranty_period_nb_months>6</warranty_period_nb_months>
</equipment_model>