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": "8619ca3d-bac1-4f41-b848-b5adf0d9e7a3",
  "name": "sample string 2",
  "equipment_brand_id": "9b7ffe8c-be3b-4bec-96a3-125f8aebe924",
  "equipment_family_id": "6a474d96-7b1e-44a8-b296-813c73566af6",
  "sales_organization_id": "7c7f0f60-7e77-4c72-8d8d-57bfdf873f29",
  "warranty_period_nb_months": 6,
  "replacement_period_nb_months": 7,
  "modified_dateutc": "2026-01-11T21:03:57.2748065+00:00"
}

application/xml, text/xml

Sample:
<equipment_model xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <equipment_brand_id>9b7ffe8c-be3b-4bec-96a3-125f8aebe924</equipment_brand_id>
  <equipment_family_id>6a474d96-7b1e-44a8-b296-813c73566af6</equipment_family_id>
  <id>8619ca3d-bac1-4f41-b848-b5adf0d9e7a3</id>
  <modified_dateutc>2026-01-11T21:03:57.274Z</modified_dateutc>
  <name>sample string 2</name>
  <replacement_period_nb_months>7</replacement_period_nb_months>
  <sales_organization_id>7c7f0f60-7e77-4c72-8d8d-57bfdf873f29</sales_organization_id>
  <warranty_period_nb_months>6</warranty_period_nb_months>
</equipment_model>