POST user/deletemachineserialnumber
Request Information
URI Parameters
None.
Body Parameters
UpdateMachineSerialNumberModel| Name | Description | Type | Additional information |
|---|---|---|---|
| MachineSerialNoId | integer |
None. |
|
| MachineSerialNo | string |
None. |
|
| MachineId | integer |
None. |
|
| UserDetailId | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"MachineSerialNoId": 1,
"MachineSerialNo": "sample string 2",
"MachineId": 3,
"UserDetailId": 4
}
application/xml, text/xml
Sample:
<UpdateMachineSerialNumberModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/NH_MachineOwner.Models.ComplexTypes"> <MachineId>3</MachineId> <MachineSerialNo>sample string 2</MachineSerialNo> <MachineSerialNoId>1</MachineSerialNoId> <UserDetailId>4</UserDetailId> </UpdateMachineSerialNumberModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
GenericResponseModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Success | boolean |
None. |
|
| Message | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Success": true,
"Message": "sample string 2"
}
application/xml, text/xml
Sample:
<GenericResponseModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/NH_MachineOwner.Models.ComplexTypes"> <Message>sample string 2</Message> <Success>true</Success> </GenericResponseModel>