2023-03-02 21:47:08 -05:00
# openapi.api.SearchApi
## Load the API package
```dart
import 'package:openapi/api.dart';
```
All URIs are relative to * /api *
Method | HTTP request | Description
------------- | ------------- | -------------
2023-03-05 15:44:31 -05:00
[**getExploreData** ](SearchApi.md#getexploredata ) | **GET ** /search/explore |
2023-03-02 21:47:08 -05:00
[**getSearchConfig** ](SearchApi.md#getsearchconfig ) | **GET ** /search/config |
[**search** ](SearchApi.md#search ) | **GET ** /search |
2023-03-05 15:44:31 -05:00
# **getExploreData**
> List<SearchExploreResponseDto> getExploreData()
### Example
```dart
import 'package:openapi/api.dart';
2023-04-09 04:26:09 +02:00
// TODO Configure API key authorization: cookie
//defaultApiClient.getAuthentication<ApiKeyAuth>('cookie').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication<ApiKeyAuth>('cookie').apiKeyPrefix = 'Bearer';
2023-03-05 15:44:31 -05:00
// TODO Configure HTTP Bearer authorization: bearer
// Case 1. Use String Token
//defaultApiClient.getAuthentication<HttpBearerAuth>('bearer').setAccessToken('YOUR_ACCESS_TOKEN');
// Case 2. Use Function which generate token.
// String yourTokenGeneratorFunction() { ... }
//defaultApiClient.getAuthentication<HttpBearerAuth>('bearer').setAccessToken(yourTokenGeneratorFunction);
final api_instance = SearchApi();
try {
final result = api_instance.getExploreData();
print(result);
} catch (e) {
print('Exception when calling SearchApi->getExploreData: $e\n');
}
```
### Parameters
This endpoint does not need any parameter.
### Return type
[**List<SearchExploreResponseDto>** ](SearchExploreResponseDto.md )
### Authorization
2023-04-09 04:26:09 +02:00
[cookie ](../README.md#cookie ), [bearer ](../README.md#bearer )
2023-03-05 15:44:31 -05:00
### HTTP request headers
- **Content-Type**: Not defined
- **Accept**: application/json
[[Back to top]](#) [[Back to API list]](../README.md#documentation -for-api-endpoints) [[Back to Model list]](../README.md#documentation -for-models) [[Back to README]](../README.md)
2023-03-02 21:47:08 -05:00
# **getSearchConfig**
> SearchConfigResponseDto getSearchConfig()
### Example
```dart
import 'package:openapi/api.dart';
2023-04-09 04:26:09 +02:00
// TODO Configure API key authorization: cookie
//defaultApiClient.getAuthentication<ApiKeyAuth>('cookie').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication<ApiKeyAuth>('cookie').apiKeyPrefix = 'Bearer';
2023-03-02 21:47:08 -05:00
// TODO Configure HTTP Bearer authorization: bearer
// Case 1. Use String Token
//defaultApiClient.getAuthentication<HttpBearerAuth>('bearer').setAccessToken('YOUR_ACCESS_TOKEN');
// Case 2. Use Function which generate token.
// String yourTokenGeneratorFunction() { ... }
//defaultApiClient.getAuthentication<HttpBearerAuth>('bearer').setAccessToken(yourTokenGeneratorFunction);
final api_instance = SearchApi();
try {
final result = api_instance.getSearchConfig();
print(result);
} catch (e) {
print('Exception when calling SearchApi->getSearchConfig: $e\n');
}
```
### Parameters
This endpoint does not need any parameter.
### Return type
[**SearchConfigResponseDto** ](SearchConfigResponseDto.md )
### Authorization
2023-04-09 04:26:09 +02:00
[cookie ](../README.md#cookie ), [bearer ](../README.md#bearer )
2023-03-02 21:47:08 -05:00
### HTTP request headers
- **Content-Type**: Not defined
- **Accept**: application/json
[[Back to top]](#) [[Back to API list]](../README.md#documentation -for-api-endpoints) [[Back to Model list]](../README.md#documentation -for-models) [[Back to README]](../README.md)
# **search**
2023-04-12 18:37:52 +03:00
> SearchResponseDto search(q, query, clip, type, isFavorite, isArchived, exifInfoPeriodCity, exifInfoPeriodState, exifInfoPeriodCountry, exifInfoPeriodMake, exifInfoPeriodModel, smartInfoPeriodObjects, smartInfoPeriodTags, recent, motion)
2023-03-02 21:47:08 -05:00
### Example
```dart
import 'package:openapi/api.dart';
2023-04-09 04:26:09 +02:00
// TODO Configure API key authorization: cookie
//defaultApiClient.getAuthentication<ApiKeyAuth>('cookie').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication<ApiKeyAuth>('cookie').apiKeyPrefix = 'Bearer';
2023-03-02 21:47:08 -05:00
// TODO Configure HTTP Bearer authorization: bearer
// Case 1. Use String Token
//defaultApiClient.getAuthentication<HttpBearerAuth>('bearer').setAccessToken('YOUR_ACCESS_TOKEN');
// Case 2. Use Function which generate token.
// String yourTokenGeneratorFunction() { ... }
//defaultApiClient.getAuthentication<HttpBearerAuth>('bearer').setAccessToken(yourTokenGeneratorFunction);
final api_instance = SearchApi();
2023-03-20 16:16:32 -04:00
final q = q_example; // String |
final query = query_example; // String |
final clip = true; // bool |
final type = type_example; // String |
final isFavorite = true; // bool |
2023-04-12 18:37:52 +03:00
final isArchived = true; // bool |
2023-03-20 16:16:32 -04:00
final exifInfoPeriodCity = exifInfoPeriodCity_example; // String |
final exifInfoPeriodState = exifInfoPeriodState_example; // String |
final exifInfoPeriodCountry = exifInfoPeriodCountry_example; // String |
final exifInfoPeriodMake = exifInfoPeriodMake_example; // String |
final exifInfoPeriodModel = exifInfoPeriodModel_example; // String |
final smartInfoPeriodObjects = []; // List<String> |
final smartInfoPeriodTags = []; // List<String> |
final recent = true; // bool |
final motion = true; // bool |
2023-03-02 21:47:08 -05:00
try {
2023-04-12 18:37:52 +03:00
final result = api_instance.search(q, query, clip, type, isFavorite, isArchived, exifInfoPeriodCity, exifInfoPeriodState, exifInfoPeriodCountry, exifInfoPeriodMake, exifInfoPeriodModel, smartInfoPeriodObjects, smartInfoPeriodTags, recent, motion);
2023-03-02 21:47:08 -05:00
print(result);
} catch (e) {
print('Exception when calling SearchApi->search: $e\n');
}
```
### Parameters
2023-03-20 16:16:32 -04:00
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**q ** | **String ** | | [optional]
**query ** | **String ** | | [optional]
**clip ** | **bool ** | | [optional]
**type ** | **String ** | | [optional]
**isFavorite ** | **bool ** | | [optional]
2023-04-12 18:37:52 +03:00
**isArchived ** | **bool ** | | [optional]
2023-03-20 16:16:32 -04:00
**exifInfoPeriodCity ** | **String ** | | [optional]
**exifInfoPeriodState ** | **String ** | | [optional]
**exifInfoPeriodCountry ** | **String ** | | [optional]
**exifInfoPeriodMake ** | **String ** | | [optional]
**exifInfoPeriodModel ** | **String ** | | [optional]
**smartInfoPeriodObjects ** | [**List<String>** ](String.md )| | [optional] [default to const []]
**smartInfoPeriodTags ** | [**List<String>** ](String.md )| | [optional] [default to const []]
**recent ** | **bool ** | | [optional]
**motion ** | **bool ** | | [optional]
2023-03-02 21:47:08 -05:00
### Return type
[**SearchResponseDto** ](SearchResponseDto.md )
### Authorization
2023-04-09 04:26:09 +02:00
[cookie ](../README.md#cookie ), [bearer ](../README.md#bearer )
2023-03-02 21:47:08 -05:00
### HTTP request headers
- **Content-Type**: Not defined
- **Accept**: application/json
[[Back to top]](#) [[Back to API list]](../README.md#documentation -for-api-endpoints) [[Back to Model list]](../README.md#documentation -for-models) [[Back to README]](../README.md)