GET associations({associationId})/micsettings
Method to get the MIC settings for an association
Request Information
Parameters
| Name | Description | Additional information |
|---|---|---|
| associationId | Association of interest |
Define this parameter in the request URI. |
Response Information
All of the MIC settings
Response body formats
application/json, text/json
Sample:
[
{
"TypeId": 1,
"TypeName": "sample string 2",
"SettingValue": "sample string 3"
},
{
"TypeId": 1,
"TypeName": "sample string 2",
"SettingValue": "sample string 3"
},
{
"TypeId": 1,
"TypeName": "sample string 2",
"SettingValue": "sample string 3"
}
]
application/xml, text/xml
Sample:
<ArrayOfMICSettingResource xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MicroNet.WebAPI.Classes.Resources">
<MICSettingResource>
<SettingValue>sample string 3</SettingValue>
<TypeId>1</TypeId>
<TypeName>sample string 2</TypeName>
</MICSettingResource>
<MICSettingResource>
<SettingValue>sample string 3</SettingValue>
<TypeId>1</TypeId>
<TypeName>sample string 2</TypeName>
</MICSettingResource>
<MICSettingResource>
<SettingValue>sample string 3</SettingValue>
<TypeId>1</TypeId>
<TypeName>sample string 2</TypeName>
</MICSettingResource>
</ArrayOfMICSettingResource>
text/csv
Sample:
TypeId,TypeName,SettingValue "1","sample string 2","sample string 3" "1","sample string 2","sample string 3" "1","sample string 2","sample string 3"