GET GlobalSearchPreferences?page={page}&pageSize={pageSize}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| page | integer |
Default value is 1 |
|
| pageSize | integer |
Default value is 50 |
Body Parameters
None.
Response Information
Resource Description
Collection of GlobalSearchPreferenceDto| Name | Description | Type | Additional information |
|---|---|---|---|
| EntityType | integer |
None. |
|
| EntityDescription | string |
None. |
|
| Enabled | boolean |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"EntityType": 1,
"EntityDescription": "sample string 2",
"Enabled": true
},
{
"EntityType": 1,
"EntityDescription": "sample string 2",
"Enabled": true
}
]
application/xml, text/xml
Sample:
<ArrayOfGlobalSearchPreferenceDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Ationet.Model">
<GlobalSearchPreferenceDto>
<Enabled>true</Enabled>
<EntityDescription>sample string 2</EntityDescription>
<EntityType>1</EntityType>
</GlobalSearchPreferenceDto>
<GlobalSearchPreferenceDto>
<Enabled>true</Enabled>
<EntityDescription>sample string 2</EntityDescription>
<EntityType>1</EntityType>
</GlobalSearchPreferenceDto>
</ArrayOfGlobalSearchPreferenceDto>