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

Request Information

URI Parameters

NameDescriptionTypeAdditional information
locationId

integer

Required

id

integer

Required

Body Parameters

None.

Response Information

Resource Description

TransactionLog
NameDescriptionTypeAdditional information
transactionSessionId

integer

None.

transactionStatusId

integer

None.

tokenId

integer

None.

performedForUserId

integer

None.

dateCreated

date

None.

count

integer

None.

tracer

string

None.

miscAmount

decimal number

None.

enabled

boolean

None.

id

integer

None.

name

string

None.

displayName

string

None.

Response Formats

application/json, text/json

Sample:
{
  "transactionSessionId": 1,
  "transactionStatusId": 2,
  "tokenId": 3,
  "performedForUserId": 4,
  "dateCreated": "2025-12-10T11:56:05.1677827+00:00",
  "count": 6,
  "tracer": "sample string 7",
  "miscAmount": 8.0,
  "enabled": true,
  "id": 10,
  "name": "sample string 11",
  "displayName": "sample string 12"
}

application/xml, text/xml

Sample:
<TransactionLog 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>
  <count>6</count>
  <dateCreated>2025-12-10T11:56:05.1677827+00:00</dateCreated>
  <miscAmount>8</miscAmount>
  <performedForUserId>4</performedForUserId>
  <tokenId>3</tokenId>
  <tracer>sample string 7</tracer>
  <transactionSessionId>1</transactionSessionId>
  <transactionStatusId>2</transactionStatusId>
</TransactionLog>