To get started, call one of the following methods:
- Anysense.API.Client.V1.ApiClient.Create
- Anysense.API.Client.V1.ApiClient.CreateAsync
- Anysense.API.Client.V1.ApiClient.CreateWithToken
- Anysense.API.Client.V1.ApiClient.CreateWithTokenAsync
See Anysense.API.Client.Shared.BaseClient<T> for documentation on these methods.
Gets data for a given form.
Namespace: Anysense.API.Client.V1Assembly: Anysense.API.Client (in Anysense.API.Client.dll) Version: 1.31.16+70a1cd56b0e0edeea15f29c3f401e7c22c5026a4
Syntaxpublic GetDataResponse Search(
SearchRequest request
)
Parameters
- request SearchRequest
-
The SearchFormData request.
See Implementation Notes.
Return Value
GetDataResponse
Remarks
This method should not be used for synchronizing data on clients beginning with API v1.10 and forwards.
Prior two API v1.10, the search method had two methods:
1. If a RowVersion is submitted, the search method will ignore all other submitted filtering and return everything that has been added or modified since that row version.
2. If no RowVersion is submitted, the search method will be using the submitted filters (if any)
If a client is synchronizing, it should keep asking for data, until there is no new/updated and or deleted data returned.
See Also