POST api/Reports/Search?clientID={clientID}&instanceID={instanceID}&documentID={documentID}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| clientID | string |
Required |
|
| instanceID | string |
Required |
|
| documentID | string |
Required |
Body Parameters
SearchArgs| Name | Description | Type | Additional information |
|---|---|---|---|
| SearchToken | string |
None. |
|
| MatchCase | boolean |
None. |
|
| MatchWholeWord | boolean |
None. |
|
| UseRegularExpressions | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"SearchToken": "sample string 1",
"MatchCase": true,
"MatchWholeWord": true,
"UseRegularExpressions": true
}
application/xml, text/xml
Sample:
<SearchArgs xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Telerik.Reporting.Services.Engine"> <MatchCase>true</MatchCase> <MatchWholeWord>true</MatchWholeWord> <SearchToken>sample string 1</SearchToken> <UseRegularExpressions>true</UseRegularExpressions> </SearchArgs>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |