GET GlobalSearch?searchText={searchText}&includeEntities[0]={includeEntities[0]}&includeEntities[1]={includeEntities[1]}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| searchText | string |
None. |
|
| includeEntities | Collection of GlobalSearchEntityTypeEnum |
None. |
Body Parameters
None.
Response Information
Resource Description
Collection of GlobalSearchDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| Type | integer |
None. |
|
| SubType | integer |
None. |
|
| Title | string |
None. |
|
| Description | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": "291fe40b-e65b-4b5f-b22d-e7ffd1f05b83",
"Type": 2,
"SubType": 1,
"Title": "sample string 3",
"Description": "sample string 4"
},
{
"Id": "291fe40b-e65b-4b5f-b22d-e7ffd1f05b83",
"Type": 2,
"SubType": 1,
"Title": "sample string 3",
"Description": "sample string 4"
}
]
application/xml, text/xml
Sample:
<ArrayOfGlobalSearchDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Ationet.Model">
<GlobalSearchDto>
<Description>sample string 4</Description>
<Id>291fe40b-e65b-4b5f-b22d-e7ffd1f05b83</Id>
<SubType>1</SubType>
<Title>sample string 3</Title>
<Type>2</Type>
</GlobalSearchDto>
<GlobalSearchDto>
<Description>sample string 4</Description>
<Id>291fe40b-e65b-4b5f-b22d-e7ffd1f05b83</Id>
<SubType>1</SubType>
<Title>sample string 3</Title>
<Type>2</Type>
</GlobalSearchDto>
</ArrayOfGlobalSearchDto>