# mycoreapi.api.AzureApi ## Load the API package ```dart import 'package:mycoreapi/api.dart'; ``` All URIs are relative to *http://localhost:25049* Method | HTTP request | Description ------------- | ------------- | ------------- [**azureCreate**](AzureApi.md#azurecreate) | **POST** /azure | # **azureCreate** > MultipartFile azureCreate(azureADAuthModel) ### Example ```dart import 'package:mycoreapi/api.dart'; // TODO Configure OAuth2 access token for authorization: bearer //defaultApiClient.getAuthentication('bearer').accessToken = 'YOUR_ACCESS_TOKEN'; final api_instance = AzureApi(); final azureADAuthModel = AzureADAuthModel(); // AzureADAuthModel | try { final result = api_instance.azureCreate(azureADAuthModel); print(result); } catch (e) { print('Exception when calling AzureApi->azureCreate: $e\n'); } ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- **azureADAuthModel** | [**AzureADAuthModel**](AzureADAuthModel.md)| | ### Return type [**MultipartFile**](MultipartFile.md) ### Authorization [bearer](../README.md#bearer) ### HTTP request headers - **Content-Type**: application/json - **Accept**: application/octet-stream [[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)