# Org.OpenAPITools.Api.DefaultApi All URIs are relative to *http://petstore.swagger.io:80/v2* Method | HTTP request | Description ------------- | ------------- | ------------- [**FooGet**](DefaultApi.md#fooget) | **GET** /foo | ## FooGet > FooGetDefaultResponse FooGet () ### Example ```csharp using System.Collections.Generic; using System.Diagnostics; using Org.OpenAPITools.Api; using Org.OpenAPITools.Client; using Org.OpenAPITools.Model; namespace Example { public class FooGetExample { public static void Main() { Configuration.Default.BasePath = "http://petstore.swagger.io:80/v2"; var apiInstance = new DefaultApi(Configuration.Default); try { FooGetDefaultResponse result = apiInstance.FooGet(); Debug.WriteLine(result); } catch (ApiException e) { Debug.Print("Exception when calling DefaultApi.FooGet: " + e.Message ); Debug.Print("Status Code: "+ e.ErrorCode); Debug.Print(e.StackTrace); } } } } ``` ### Parameters This endpoint does not need any parameter. ### Return type [**FooGetDefaultResponse**](FooGetDefaultResponse.md) ### Authorization No authorization required ### HTTP request headers - **Content-Type**: Not defined - **Accept**: application/json ### HTTP response details | Status code | Description | Response headers | |-------------|-------------|------------------| | **0** | response | - | [[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)