DELETE api/ProductOrder_Product/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
ProductOrder_Product| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| Order_Id | globally unique identifier |
None. |
|
| ProductId | integer |
None. |
|
| ProductName | string |
None. |
|
| Is_WildCard | boolean |
None. |
|
| Enable | boolean |
None. |
|
| TimeStamp | date |
None. |
|
| Price | integer |
None. |
|
| Amount | byte |
None. |
|
| Operator | globally unique identifier |
None. |
Response Formats
application/json, text/json
Sample:
{
"Id": "fa96acea-fb71-4ed2-b34b-807bb683f712",
"Order_Id": "bfefc9ba-3f39-4b08-844f-e3dfebe611b1",
"ProductId": 3,
"ProductName": "sample string 4",
"Is_WildCard": true,
"Enable": true,
"TimeStamp": "2026-02-14T08:11:40.4844769+08:00",
"Price": 8,
"Amount": 64,
"Operator": "7a53390e-1918-41a8-bb51-8c69df347b9a"
}
application/xml, text/xml
Sample:
<ProductOrder_Product xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/JmplusAPI.Entities.ProductOrder"> <Amount>64</Amount> <Enable>true</Enable> <Id>fa96acea-fb71-4ed2-b34b-807bb683f712</Id> <Is_WildCard>true</Is_WildCard> <Operator>7a53390e-1918-41a8-bb51-8c69df347b9a</Operator> <Order_Id>bfefc9ba-3f39-4b08-844f-e3dfebe611b1</Order_Id> <Price>8</Price> <ProductId>3</ProductId> <ProductName>sample string 4</ProductName> <TimeStamp>2026-02-14T08:11:40.4844769+08:00</TimeStamp> </ProductOrder_Product>