Retrieves the equipment model with the specified key.
Request Information
URI Parameters :
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
The equipment model id. |
globally unique identifier |
Required |
Body Parameters :
None.
Response Information
Resource Description :
IHttpActionResult containing the equipment model, or 404 Not Found if it doesn't exist.
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": "b7094442-9caf-494f-8291-1371860604ef",
"name": "sample string 2",
"equipment_brand_id": "8dc241f5-0472-4da8-9aca-15ba21719379",
"equipment_family_id": "2504dceb-fb5f-45b7-b0ce-c11dc983c31f",
"sales_organization_id": "fa9f6238-b5a4-477e-84a4-03ce2261518a",
"warranty_period_nb_months": 6,
"replacement_period_nb_months": 7,
"modified_dateutc": "2026-09-16T08:36:59.914683+00:00"
}
application/xml, text/xml
Sample:
<equipment_model xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <equipment_brand_id>8dc241f5-0472-4da8-9aca-15ba21719379</equipment_brand_id> <equipment_family_id>2504dceb-fb5f-45b7-b0ce-c11dc983c31f</equipment_family_id> <id>b7094442-9caf-494f-8291-1371860604ef</id> <modified_dateutc>2026-09-16T08:36:59.914Z</modified_dateutc> <name>sample string 2</name> <replacement_period_nb_months>7</replacement_period_nb_months> <sales_organization_id>fa9f6238-b5a4-477e-84a4-03ce2261518a</sales_organization_id> <warranty_period_nb_months>6</warranty_period_nb_months> </equipment_model>