GET api/Token/GetTokensByTransactionSessionIdWithPending?locationId={locationId}&transactionsessionid={transactionsessionid}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
locationId

integer

Required

transactionsessionid

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of Token
NameDescriptionTypeAdditional information
currencyId

integer

None.

typeId

integer

None.

exponentialValue

decimal number

None.

value

integer

None.

dateCreated

date

None.

count

integer

None.

totalAmount

decimal number

None.

totalAmountStr

string

None.

enabled

boolean

None.

id

integer

None.

name

string

None.

displayName

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "currencyId": 1,
    "typeId": 2,
    "exponentialValue": 3.0,
    "value": 4,
    "dateCreated": "2025-12-10T11:56:48.2637608+00:00",
    "count": 0,
    "totalAmount": 0.0,
    "totalAmountStr": "$0.00",
    "enabled": true,
    "id": 9,
    "name": "sample string 10",
    "displayName": "sample string 11"
  },
  {
    "currencyId": 1,
    "typeId": 2,
    "exponentialValue": 3.0,
    "value": 4,
    "dateCreated": "2025-12-10T11:56:48.2637608+00:00",
    "count": 0,
    "totalAmount": 0.0,
    "totalAmountStr": "$0.00",
    "enabled": true,
    "id": 9,
    "name": "sample string 10",
    "displayName": "sample string 11"
  }
]

application/xml, text/xml

Sample:
<ArrayOfToken xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/libMIMO.models.MIMOCore">
  <Token>
    <displayName xmlns="http://schemas.datacontract.org/2004/07/libMIMO.models">sample string 11</displayName>
    <enabled xmlns="http://schemas.datacontract.org/2004/07/libMIMO.models">true</enabled>
    <id xmlns="http://schemas.datacontract.org/2004/07/libMIMO.models">9</id>
    <name xmlns="http://schemas.datacontract.org/2004/07/libMIMO.models">sample string 10</name>
    <count>0</count>
    <currencyId>1</currencyId>
    <dateCreated>2025-12-10T11:56:48.2637608+00:00</dateCreated>
    <exponentialValue>3</exponentialValue>
    <totalAmount>0</totalAmount>
    <typeId>2</typeId>
    <value>4</value>
  </Token>
  <Token>
    <displayName xmlns="http://schemas.datacontract.org/2004/07/libMIMO.models">sample string 11</displayName>
    <enabled xmlns="http://schemas.datacontract.org/2004/07/libMIMO.models">true</enabled>
    <id xmlns="http://schemas.datacontract.org/2004/07/libMIMO.models">9</id>
    <name xmlns="http://schemas.datacontract.org/2004/07/libMIMO.models">sample string 10</name>
    <count>0</count>
    <currencyId>1</currencyId>
    <dateCreated>2025-12-10T11:56:48.2637608+00:00</dateCreated>
    <exponentialValue>3</exponentialValue>
    <totalAmount>0</totalAmount>
    <typeId>2</typeId>
    <value>4</value>
  </Token>
</ArrayOfToken>