Retrieves all the equipment_model objects

Request Information

URI Parameters :

None.

Body Parameters :

None.

Response Information

Resource Description :

IHttpActionResult

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": "0c038b93-5cfb-419a-ad16-4d33e700cd19",
  "name": "sample string 2",
  "equipment_brand_id": "8a09489c-934c-4125-b6f2-55bcdbf90ae2",
  "equipment_family_id": "93e3d22f-8ff4-4174-8912-913ca7384eff",
  "sales_organization_id": "eea7e43a-29dd-45b3-b5a8-d7dc37f37c24",
  "warranty_period_nb_months": 6,
  "replacement_period_nb_months": 7,
  "modified_dateutc": "2026-03-07T14:51:30.9251039+00:00"
}

application/xml, text/xml

Sample:
<equipment_model xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <equipment_brand_id>8a09489c-934c-4125-b6f2-55bcdbf90ae2</equipment_brand_id>
  <equipment_family_id>93e3d22f-8ff4-4174-8912-913ca7384eff</equipment_family_id>
  <id>0c038b93-5cfb-419a-ad16-4d33e700cd19</id>
  <modified_dateutc>2026-03-07T14:51:30.925Z</modified_dateutc>
  <name>sample string 2</name>
  <replacement_period_nb_months>7</replacement_period_nb_months>
  <sales_organization_id>eea7e43a-29dd-45b3-b5a8-d7dc37f37c24</sales_organization_id>
  <warranty_period_nb_months>6</warranty_period_nb_months>
</equipment_model>