GET api/Transaction/{id}?locationId={locationId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
locationId

integer

Required

id

integer

Required

Body Parameters

None.

Response Information

Resource Description

Transaction
NameDescriptionTypeAdditional 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.

vaultDefault

DEFAULTS

None.

enabled

boolean

None.

id

integer

None.

name

string

None.

displayName

string

None.

hasMisc

boolean

None.

hasManual

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "hasMisc": true,
  "hasManual": true,
  "typeId": 1,
  "vaultId": 1,
  "dateCreated": "2026-02-17T20:43:13.7700533+00:00",
  "vault": true,
  "isPayout": true,
  "payoutCategoryId": 1,
  "bounding": true,
  "pooledTip": true,
  "hasCash": true,
  "hasCoin": true,
  "vaultDefault": 1,
  "enabled": true,
  "id": 10,
  "name": "sample string 11",
  "displayName": "sample string 12"
}

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 12</displayName>
  <enabled xmlns="http://schemas.datacontract.org/2004/07/libMIMO.models">true</enabled>
  <id xmlns="http://schemas.datacontract.org/2004/07/libMIMO.models">10</id>
  <name xmlns="http://schemas.datacontract.org/2004/07/libMIMO.models">sample string 11</name>
  <bounding>true</bounding>
  <dateCreated>2026-02-17T20:43:13.7700533+00:00</dateCreated>
  <hasCash>true</hasCash>
  <hasCoin>true</hasCoin>
  <hasManual>true</hasManual>
  <hasMisc>true</hasMisc>
  <isPayout>true</isPayout>
  <payoutCategoryId>1</payoutCategoryId>
  <pooledTip>true</pooledTip>
  <typeId>1</typeId>
  <vault>true</vault>
  <vaultId>1</vaultId>
</Transaction>