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