GET OrderProduct/Product?id={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": "a3c6ad64-80bf-42b4-81e4-e1fd9b0f8365",
"Order_Id": "0c14fbcd-8809-4252-8b3c-03acc34b3831",
"ProductId": 3,
"ProductName": "sample string 4",
"Is_WildCard": true,
"Enable": true,
"TimeStamp": "2026-02-14T08:10:44.6418633+08:00",
"Price": 8,
"Amount": 64,
"Operator": "1ecd8fac-fbb8-40f6-8874-856f60d1c85e"
}
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>a3c6ad64-80bf-42b4-81e4-e1fd9b0f8365</Id> <Is_WildCard>true</Is_WildCard> <Operator>1ecd8fac-fbb8-40f6-8874-856f60d1c85e</Operator> <Order_Id>0c14fbcd-8809-4252-8b3c-03acc34b3831</Order_Id> <Price>8</Price> <ProductId>3</ProductId> <ProductName>sample string 4</ProductName> <TimeStamp>2026-02-14T08:10:44.6418633+08:00</TimeStamp> </ProductOrder_Product>