# openapi.api.AdminSupportApi

## Load the API package
```dart
import 'package:openapi/api.dart';
```

All URIs are relative to *http://localhost*

Method | HTTP request | Description
------------- | ------------- | -------------
[**create**](AdminSupportApi.md#create) | **POST** /api/admin/support | 
[**findAll**](AdminSupportApi.md#findall) | **GET** /api/admin/support | 


# **create**
> create(support)



### Example
```dart
import 'package:openapi/api.dart';

final api = Openapi().getAdminSupportApi();
final Support support = ; // Support | 

try {
    api.create(support);
} catch on DioError (e) {
    print('Exception when calling AdminSupportApi->create: $e\n');
}
```

### Parameters

Name | Type | Description  | Notes
------------- | ------------- | ------------- | -------------
 **support** | [**Support**](Support.md)|  | 

### Return type

void (empty response body)

### Authorization

No authorization required

### HTTP request headers

 - **Content-Type**: application/json
 - **Accept**: Not defined

[[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)

# **findAll**
> findAll()



### Example
```dart
import 'package:openapi/api.dart';

final api = Openapi().getAdminSupportApi();

try {
    api.findAll();
} catch on DioError (e) {
    print('Exception when calling AdminSupportApi->findAll: $e\n');
}
```

### Parameters
This endpoint does not need any parameter.

### Return type

void (empty response body)

### Authorization

No authorization required

### HTTP request headers

 - **Content-Type**: Not defined
 - **Accept**: Not defined

[[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)

