DELETE api/POS_Pay/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
POS_Pay| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| Transaction_Id | globally unique identifier |
None. |
|
| Pay_Way | byte |
None. |
|
| Price | integer |
None. |
|
| Enable | boolean |
None. |
|
| Operator | globally unique identifier |
None. |
|
| TimeStamp | date |
None. |
|
| Remark | string |
None. |
|
| Money_Change | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"Id": "9af83591-c847-444e-8fca-fa125d30431d",
"Transaction_Id": "b21bbfad-7378-48fe-94ee-80c0ead1dde4",
"Pay_Way": 64,
"Price": 4,
"Enable": true,
"Operator": "46d45a0f-8eff-4b19-b0cd-9642c8c46599",
"TimeStamp": "2026-02-14T08:10:44.1574816+08:00",
"Remark": "sample string 8",
"Money_Change": 9
}
application/xml, text/xml
Sample:
<POS_Pay xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/JmplusAPI.Entities.PoS"> <Enable>true</Enable> <Id>9af83591-c847-444e-8fca-fa125d30431d</Id> <Money_Change>9</Money_Change> <Operator>46d45a0f-8eff-4b19-b0cd-9642c8c46599</Operator> <Pay_Way>64</Pay_Way> <Price>4</Price> <Remark>sample string 8</Remark> <TimeStamp>2026-02-14T08:10:44.1574816+08:00</TimeStamp> <Transaction_Id>b21bbfad-7378-48fe-94ee-80c0ead1dde4</Transaction_Id> </POS_Pay>