Retrieves the equipment_model object with the specified key
Request Information
URI Parameters :
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
Body Parameters :
None.
Response Information
Resource Description :
IHttpActionResult
equipment_model| Name | Description | Type | Additional 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": "2c019ad2-41be-4ba9-824f-4892eb0ef801",
"name": "sample string 2",
"equipment_brand_id": "c9b2aded-48a6-48fd-adf8-195c6fadd768",
"equipment_family_id": "42aa2611-85b4-4b7d-8816-ddca9fe0fef6",
"sales_organization_id": "4601c5e2-8f2d-4f1e-9170-064ffa2eef86",
"warranty_period_nb_months": 6,
"replacement_period_nb_months": 7,
"modified_dateutc": "2026-06-16T21:23:13.497218+00:00"
}
application/xml, text/xml
Sample:
<equipment_model xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <equipment_brand_id>c9b2aded-48a6-48fd-adf8-195c6fadd768</equipment_brand_id> <equipment_family_id>42aa2611-85b4-4b7d-8816-ddca9fe0fef6</equipment_family_id> <id>2c019ad2-41be-4ba9-824f-4892eb0ef801</id> <modified_dateutc>2026-06-16T21:23:13.497Z</modified_dateutc> <name>sample string 2</name> <replacement_period_nb_months>7</replacement_period_nb_months> <sales_organization_id>4601c5e2-8f2d-4f1e-9170-064ffa2eef86</sales_organization_id> <warranty_period_nb_months>6</warranty_period_nb_months> </equipment_model>