GET api/TransactionLog?locationId={locationId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| locationId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of TransactionLog| Name | Description | Type | Additional 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:55:19.818002+00:00",
"count": 6,
"tracer": "sample string 7",
"miscAmount": 8.0,
"enabled": true,
"id": 10,
"name": "sample string 11",
"displayName": "sample string 12"
},
{
"transactionSessionId": 1,
"transactionStatusId": 2,
"tokenId": 3,
"performedForUserId": 4,
"dateCreated": "2025-12-10T11:55:19.818002+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:
<ArrayOfTransactionLog xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/libMIMO.models.MIMOCore">
<TransactionLog>
<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:55:19.818002+00:00</dateCreated>
<miscAmount>8</miscAmount>
<performedForUserId>4</performedForUserId>
<tokenId>3</tokenId>
<tracer>sample string 7</tracer>
<transactionSessionId>1</transactionSessionId>
<transactionStatusId>2</transactionStatusId>
</TransactionLog>
<TransactionLog>
<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:55:19.818002+00:00</dateCreated>
<miscAmount>8</miscAmount>
<performedForUserId>4</performedForUserId>
<tokenId>3</tokenId>
<tracer>sample string 7</tracer>
<transactionSessionId>1</transactionSessionId>
<transactionStatusId>2</transactionStatusId>
</TransactionLog>
</ArrayOfTransactionLog>