Retrieves the equipment_model object with the specified key

Request Information

URI Parameters :

NameDescriptionTypeAdditional information
id

globally unique identifier

Required

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": "adcd371a-a24e-4a3a-9c0a-f2cc02636cdc",
  "name": "sample string 2",
  "equipment_brand_id": "16d27c9c-3108-41cf-a789-a4396a5c3191",
  "equipment_family_id": "7a2d4945-068e-4864-a4ab-bb35c973eada",
  "sales_organization_id": "e71fb2a2-96e1-4395-b851-0ebd38bda859",
  "warranty_period_nb_months": 6,
  "replacement_period_nb_months": 7,
  "modified_dateutc": "2026-03-07T13:18:56.8698189+00:00"
}

application/xml, text/xml

Sample:
<equipment_model xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <equipment_brand_id>16d27c9c-3108-41cf-a789-a4396a5c3191</equipment_brand_id>
  <equipment_family_id>7a2d4945-068e-4864-a4ab-bb35c973eada</equipment_family_id>
  <id>adcd371a-a24e-4a3a-9c0a-f2cc02636cdc</id>
  <modified_dateutc>2026-03-07T13:18:56.869Z</modified_dateutc>
  <name>sample string 2</name>
  <replacement_period_nb_months>7</replacement_period_nb_months>
  <sales_organization_id>e71fb2a2-96e1-4395-b851-0ebd38bda859</sales_organization_id>
  <warranty_period_nb_months>6</warranty_period_nb_months>
</equipment_model>