GET api/TokenType?locationId={locationId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
locationId

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of TokenType
NameDescriptionTypeAdditional information
dateCreated

date

None.

enabled

boolean

None.

id

integer

None.

name

string

None.

displayName

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "dateCreated": "2025-12-10T11:55:55.5695801+00:00",
    "enabled": true,
    "id": 3,
    "name": "sample string 4",
    "displayName": "sample string 5"
  },
  {
    "dateCreated": "2025-12-10T11:55:55.5695801+00:00",
    "enabled": true,
    "id": 3,
    "name": "sample string 4",
    "displayName": "sample string 5"
  }
]

application/xml, text/xml

Sample:
<ArrayOfTokenType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/libMIMO.models.MIMOCore">
  <TokenType>
    <displayName xmlns="http://schemas.datacontract.org/2004/07/libMIMO.models">sample string 5</displayName>
    <enabled xmlns="http://schemas.datacontract.org/2004/07/libMIMO.models">true</enabled>
    <id xmlns="http://schemas.datacontract.org/2004/07/libMIMO.models">3</id>
    <name xmlns="http://schemas.datacontract.org/2004/07/libMIMO.models">sample string 4</name>
    <dateCreated>2025-12-10T11:55:55.5695801+00:00</dateCreated>
  </TokenType>
  <TokenType>
    <displayName xmlns="http://schemas.datacontract.org/2004/07/libMIMO.models">sample string 5</displayName>
    <enabled xmlns="http://schemas.datacontract.org/2004/07/libMIMO.models">true</enabled>
    <id xmlns="http://schemas.datacontract.org/2004/07/libMIMO.models">3</id>
    <name xmlns="http://schemas.datacontract.org/2004/07/libMIMO.models">sample string 4</name>
    <dateCreated>2025-12-10T11:55:55.5695801+00:00</dateCreated>
  </TokenType>
</ArrayOfTokenType>