POST api/transactionprocessing/MarkProcessed
mark a transaction as processed
Request Information
URI Parameters
None.
Body Parameters
markprocessedarguments| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
None. |
|
| externalid | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"id": 1,
"externalid": 2
}
application/xml, text/xml
Sample:
<markprocessedarguments xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TechnoDataSystems.Enterprise.TotalWash.Web.API.Total.Wash.API"> <externalid>2</externalid> <id>1</id> </markprocessedarguments>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
markprocessedresult| Name | Description | Type | Additional information |
|---|---|---|---|
| transaction | transaction |
None. |
|
| success | boolean |
None. |
|
| resultcode | string |
None. |
|
| remark | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"transaction": {
"deviceid": "sample string 1",
"transactionitems": [
{
"productcode": "sample string 1",
"price": 1.0,
"quantity": 1.0
},
{
"productcode": "sample string 1",
"price": 1.0,
"quantity": 1.0
}
],
"paymentmethodcode": "sample string 2",
"customercardnumber": "sample string 3",
"receipt": true,
"transactiondatetime": "2025-11-05T05:51:21.7779828+01:00",
"userid": 1,
"externalid": 5
},
"success": true,
"resultcode": "sample string 2",
"remark": "sample string 3"
}
application/xml, text/xml
Sample:
<markprocessedresult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TechnoDataSystems.Enterprise.TotalWash.Web.API.Total.Wash.API">
<remark>sample string 3</remark>
<resultcode>sample string 2</resultcode>
<success>true</success>
<transaction>
<customercardnumber>sample string 3</customercardnumber>
<deviceid>sample string 1</deviceid>
<externalid>5</externalid>
<paymentmethodcode>sample string 2</paymentmethodcode>
<receipt>true</receipt>
<transactiondatetime>2025-11-05T05:51:21.7779828+01:00</transactiondatetime>
<transactionitems>
<transactionitem>
<price>1</price>
<productcode>sample string 1</productcode>
<quantity>1</quantity>
</transactionitem>
<transactionitem>
<price>1</price>
<productcode>sample string 1</productcode>
<quantity>1</quantity>
</transactionitem>
</transactionitems>
<userid>1</userid>
</transaction>
</markprocessedresult>