GET api/Transaction/{id}?locationId={locationId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| locationId | integer |
Required |
|
| id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Transaction| Name | Description | Type | Additional information |
|---|---|---|---|
| typeId | integer |
None. |
|
| vaultId | integer |
None. |
|
| dateCreated | date |
None. |
|
| vault | boolean |
None. |
|
| isPayout | boolean |
None. |
|
| payoutCategoryId | integer |
None. |
|
| bounding | boolean |
None. |
|
| pooledTip | boolean |
None. |
|
| hasCash | boolean |
None. |
|
| hasCoin | boolean |
None. |
|
| hasMisc | boolean |
None. |
|
| hasManual | boolean |
None. |
|
| cashCounterId | integer |
None. |
|
| isCashrunner | boolean |
None. |
|
| vaultDefault | DEFAULTS |
None. |
|
| enabled | boolean |
None. |
|
| id | integer |
None. |
|
| name | string |
None. |
|
| displayName | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"typeId": 1,
"vaultId": 1,
"dateCreated": "2025-12-10T11:56:29.8886067+00:00",
"vault": true,
"isPayout": true,
"payoutCategoryId": 1,
"bounding": true,
"pooledTip": true,
"hasCash": true,
"hasCoin": true,
"hasMisc": true,
"hasManual": true,
"cashCounterId": 1,
"isCashrunner": true,
"vaultDefault": 1,
"enabled": true,
"id": 13,
"name": "sample string 14",
"displayName": "sample string 15"
}
application/xml, text/xml
Sample:
<Transaction xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/libMIMO.models.MIMOCore"> <displayName xmlns="http://schemas.datacontract.org/2004/07/libMIMO.models">sample string 15</displayName> <enabled xmlns="http://schemas.datacontract.org/2004/07/libMIMO.models">true</enabled> <id xmlns="http://schemas.datacontract.org/2004/07/libMIMO.models">13</id> <name xmlns="http://schemas.datacontract.org/2004/07/libMIMO.models">sample string 14</name> <bounding>true</bounding> <cashCounterId>1</cashCounterId> <dateCreated>2025-12-10T11:56:29.8886067+00:00</dateCreated> <hasCash>true</hasCash> <hasCoin>true</hasCoin> <hasManual>true</hasManual> <hasMisc>true</hasMisc> <isCashrunner>true</isCashrunner> <isPayout>true</isPayout> <payoutCategoryId>1</payoutCategoryId> <pooledTip>true</pooledTip> <typeId>1</typeId> <vault>true</vault> <vaultId>1</vaultId> </Transaction>