PUT api/POS_Pay/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
Body Parameters
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. |
Request Formats
application/json, text/json
Sample:
{
"Id": "d03e4bdf-4373-4d89-8ca5-f9ccfc43d4fd",
"Transaction_Id": "49bec244-f863-481f-bbf7-f97c17c3570f",
"Pay_Way": 64,
"Price": 4,
"Enable": true,
"Operator": "4b7bfec8-6c9d-4f20-b6ef-2a8fd1381694",
"TimeStamp": "2026-02-14T08:09:32.9313829+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>d03e4bdf-4373-4d89-8ca5-f9ccfc43d4fd</Id> <Money_Change>9</Money_Change> <Operator>4b7bfec8-6c9d-4f20-b6ef-2a8fd1381694</Operator> <Pay_Way>64</Pay_Way> <Price>4</Price> <Remark>sample string 8</Remark> <TimeStamp>2026-02-14T08:09:32.9313829+08:00</TimeStamp> <Transaction_Id>49bec244-f863-481f-bbf7-f97c17c3570f</Transaction_Id> </POS_Pay>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.