GET api/Setup?locationId={locationId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| locationId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of Setup| Name | Description | Type | Additional information |
|---|---|---|---|
| iconName | string |
None. |
|
| dateCreated | date |
None. |
|
| enabled | boolean |
None. |
|
| id | integer |
None. |
|
| name | string |
None. |
|
| displayName | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"iconName": "sample string 1",
"dateCreated": "2025-12-10T11:55:55.7570707+00:00",
"enabled": true,
"id": 4,
"name": "sample string 5",
"displayName": "sample string 6"
},
{
"iconName": "sample string 1",
"dateCreated": "2025-12-10T11:55:55.7570707+00:00",
"enabled": true,
"id": 4,
"name": "sample string 5",
"displayName": "sample string 6"
}
]
application/xml, text/xml
Sample:
<ArrayOfSetup xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/libMIMO.models.MIMOCore">
<Setup>
<displayName xmlns="http://schemas.datacontract.org/2004/07/libMIMO.models">sample string 6</displayName>
<enabled xmlns="http://schemas.datacontract.org/2004/07/libMIMO.models">true</enabled>
<id xmlns="http://schemas.datacontract.org/2004/07/libMIMO.models">4</id>
<name xmlns="http://schemas.datacontract.org/2004/07/libMIMO.models">sample string 5</name>
<dateCreated>2025-12-10T11:55:55.7570707+00:00</dateCreated>
<iconName>sample string 1</iconName>
</Setup>
<Setup>
<displayName xmlns="http://schemas.datacontract.org/2004/07/libMIMO.models">sample string 6</displayName>
<enabled xmlns="http://schemas.datacontract.org/2004/07/libMIMO.models">true</enabled>
<id xmlns="http://schemas.datacontract.org/2004/07/libMIMO.models">4</id>
<name xmlns="http://schemas.datacontract.org/2004/07/libMIMO.models">sample string 5</name>
<dateCreated>2025-12-10T11:55:55.7570707+00:00</dateCreated>
<iconName>sample string 1</iconName>
</Setup>
</ArrayOfSetup>