GET 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": "9d360a8d-f9b4-4b93-8a9f-a5276f50f884",
"Transaction_Id": "cd48cbc6-407f-4af0-8bae-91475ece31ad",
"Pay_Way": 64,
"Price": 4,
"Enable": true,
"Operator": "6d902895-3a82-4890-b64c-5c4da97fe18a",
"TimeStamp": "2026-02-14T08:09:01.3837413+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>9d360a8d-f9b4-4b93-8a9f-a5276f50f884</Id> <Money_Change>9</Money_Change> <Operator>6d902895-3a82-4890-b64c-5c4da97fe18a</Operator> <Pay_Way>64</Pay_Way> <Price>4</Price> <Remark>sample string 8</Remark> <TimeStamp>2026-02-14T08:09:01.3837413+08:00</TimeStamp> <Transaction_Id>cd48cbc6-407f-4af0-8bae-91475ece31ad</Transaction_Id> </POS_Pay>