GET api/Transaction/GetByTransactionId?locationId={locationId}&transactionId={transactionId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| locationId | integer |
Required |
|
| transactionId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of TransactionTokenType| Name | Description | Type | Additional information |
|---|---|---|---|
| dateCreated | date |
None. |
|
| transactionId | integer |
None. |
|
| tokenTypeId | integer |
None. |
|
| enabled | boolean |
None. |
|
| id | integer |
None. |
|
| name | string |
None. |
|
| displayName | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"dateCreated": "2025-12-10T11:56:30.154248+00:00",
"transactionId": 2,
"tokenTypeId": 3,
"enabled": true,
"id": 5,
"name": "sample string 6",
"displayName": "sample string 7"
},
{
"dateCreated": "2025-12-10T11:56:30.154248+00:00",
"transactionId": 2,
"tokenTypeId": 3,
"enabled": true,
"id": 5,
"name": "sample string 6",
"displayName": "sample string 7"
}
]
application/xml, text/xml
Sample:
<ArrayOfTransactionTokenType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/libMIMO.models.MIMOCore">
<TransactionTokenType>
<displayName xmlns="http://schemas.datacontract.org/2004/07/libMIMO.models">sample string 7</displayName>
<enabled xmlns="http://schemas.datacontract.org/2004/07/libMIMO.models">true</enabled>
<id xmlns="http://schemas.datacontract.org/2004/07/libMIMO.models">5</id>
<name xmlns="http://schemas.datacontract.org/2004/07/libMIMO.models">sample string 6</name>
<dateCreated>2025-12-10T11:56:30.154248+00:00</dateCreated>
<tokenTypeId>3</tokenTypeId>
<transactionId>2</transactionId>
</TransactionTokenType>
<TransactionTokenType>
<displayName xmlns="http://schemas.datacontract.org/2004/07/libMIMO.models">sample string 7</displayName>
<enabled xmlns="http://schemas.datacontract.org/2004/07/libMIMO.models">true</enabled>
<id xmlns="http://schemas.datacontract.org/2004/07/libMIMO.models">5</id>
<name xmlns="http://schemas.datacontract.org/2004/07/libMIMO.models">sample string 6</name>
<dateCreated>2025-12-10T11:56:30.154248+00:00</dateCreated>
<tokenTypeId>3</tokenTypeId>
<transactionId>2</transactionId>
</TransactionTokenType>
</ArrayOfTransactionTokenType>