GET api/Token/{id}?locationId={locationId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| locationId | integer |
Required |
|
| id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Token| Name | Description | Type | Additional 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:47.3575054+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:
<Token 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 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:47.3575054+00:00</dateCreated> <exponentialValue>3</exponentialValue> <totalAmount>0</totalAmount> <typeId>2</typeId> <value>4</value> </Token>