PUT v1/OemModels/{id}
Puts the specified id.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
The id. |
integer |
Required |
Body Parameters
The value.
Lhp.EquipmentIntelligence.WebApi.Models.V1.OemEquipmentModelsModel| Name | Description | Type | Additional information |
|---|---|---|---|
| OemEquipmentModelId |
ID of the OEM Equipment Model. |
integer |
None. |
| CustomerId |
ID of the Customer that defined this OEM Equipment Model. |
integer |
None. |
| OemEquipmentMakeId |
ID of the OEM Equipment Make that this is a model of. |
integer |
None. |
| OemEquipmentTypeId |
ID of the Type of OEM Equipment. |
integer |
None. |
| Name |
Name of this OEM Equipment Model. |
string |
None. |
| Description |
Description of this OEM Equipment Model. |
string |
None. |
Request Formats
application/json, text/json
Sample:
{
"OemEquipmentModelId": 1,
"CustomerId": 2,
"OemEquipmentMakeId": 3,
"OemEquipmentTypeId": 4,
"Name": "sample string 5",
"Description": "sample string 6"
}
application/xml, text/xml
Sample:
<OemEquipmentModelsModel xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <OemEquipmentModelId>1</OemEquipmentModelId> <CustomerId>2</CustomerId> <OemEquipmentMakeId>3</OemEquipmentMakeId> <OemEquipmentTypeId>4</OemEquipmentTypeId> <Name>sample string 5</Name> <Description>sample string 6</Description> </OemEquipmentModelsModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.