DELETE api/Repair/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
Repair_Index| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| Customer_Id | globally unique identifier |
None. |
|
| TimeStamp | date |
None. |
|
| Enable | boolean |
None. |
|
| Operator | globally unique identifier |
None. |
|
| Serial | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Id": "8082b68f-f9bc-4149-9504-e6db57b2ce5a",
"Customer_Id": "b58837e7-296b-4ce6-b92d-befa7621496c",
"TimeStamp": "2026-02-14T08:10:22.9326052+08:00",
"Enable": true,
"Operator": "ebd2e4fe-9067-470f-9cc5-baba0a4cb017",
"Serial": "sample string 6"
}
application/xml, text/xml
Sample:
<Repair_Index xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/JmplusAPI.Entities"> <Customer_Id>b58837e7-296b-4ce6-b92d-befa7621496c</Customer_Id> <Enable>true</Enable> <Id>8082b68f-f9bc-4149-9504-e6db57b2ce5a</Id> <Operator>ebd2e4fe-9067-470f-9cc5-baba0a4cb017</Operator> <Serial>sample string 6</Serial> <TimeStamp>2026-02-14T08:10:22.9326052+08:00</TimeStamp> </Repair_Index>