# openapi.api.AdminSupportContentFeedbackApi

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

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

Method | HTTP request | Description
------------- | ------------- | -------------
[**create**](AdminSupportContentFeedbackApi.md#create) | **POST** /api/admin/support-content/{slug}/feedback | Create a new support content feedback
[**findAll**](AdminSupportContentFeedbackApi.md#findall) | **GET** /api/admin/support-content/{slug}/feedback | Get all support content feedback


# **create**
> SupportContentFeedback create(slug, supportContentFeedback)

Create a new support content feedback

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

final api = Openapi().getAdminSupportContentFeedbackApi();
final String slug = slug_example; // String | 
final SupportContentFeedback supportContentFeedback = ; // SupportContentFeedback | 

try {
    final response = api.create(slug, supportContentFeedback);
    print(response);
} catch on DioError (e) {
    print('Exception when calling AdminSupportContentFeedbackApi->create: $e\n');
}
```

### Parameters

Name | Type | Description  | Notes
------------- | ------------- | ------------- | -------------
 **slug** | **String**|  | 
 **supportContentFeedback** | [**SupportContentFeedback**](SupportContentFeedback.md)|  | 

### Return type

[**SupportContentFeedback**](SupportContentFeedback.md)

### Authorization

No authorization required

### HTTP request headers

 - **Content-Type**: application/json
 - **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)

# **findAll**
> FindAllSupportContentFeedbackRes findAll(slug)

Get all support content feedback

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

final api = Openapi().getAdminSupportContentFeedbackApi();
final String slug = slug_example; // String | 

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

### Parameters

Name | Type | Description  | Notes
------------- | ------------- | ------------- | -------------
 **slug** | **String**|  | 

### Return type

[**FindAllSupportContentFeedbackRes**](FindAllSupportContentFeedbackRes.md)

### Authorization

No authorization required

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

