All URIs are relative to https://prod.api.appcluster01.ca-central-1.ezmax.com/rest
| Method | HTTP request | Description |
|---|---|---|
| InscriptiontypeGetAutocompleteV2 | GET /2/object/inscriptiontype/getAutocomplete/{sSelector} | Retrieve Inscriptiontypes and IDs |
InscriptiontypeGetAutocompleteV2Response InscriptiontypeGetAutocompleteV2 (string sSelector, string? sQuery = null, HeaderAcceptLanguage? acceptLanguage = null)
Retrieve Inscriptiontypes and IDs
Get the list of Inscriptiontype to be used in a dropdown or autocomplete control.
using System.Collections.Generic;
using System.Diagnostics;
using eZmaxApi.Api;
using eZmaxApi.Client;
using eZmaxApi.Model;
namespace Example
{
public class InscriptiontypeGetAutocompleteV2Example
{
public static void Main()
{
Configuration config = new Configuration();
config.BasePath = "https://prod.api.appcluster01.ca-central-1.ezmax.com/rest";
// Configure API key authorization: Authorization
config.AddApiKey("Authorization", "YOUR_API_KEY");
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// config.AddApiKeyPrefix("Authorization", "Bearer");
var apiInstance = new ObjectInscriptiontypeApi(config);
var sSelector = "All"; // string | The type of Inscriptiontypes to return
var sQuery = "sQuery_example"; // string? | Allow to filter the returned results (optional)
var acceptLanguage = new HeaderAcceptLanguage?(); // HeaderAcceptLanguage? | (optional)
try
{
// Retrieve Inscriptiontypes and IDs
InscriptiontypeGetAutocompleteV2Response result = apiInstance.InscriptiontypeGetAutocompleteV2(sSelector, sQuery, acceptLanguage);
Debug.WriteLine(result);
}
catch (ApiException e)
{
Debug.Print("Exception when calling ObjectInscriptiontypeApi.InscriptiontypeGetAutocompleteV2: " + e.Message);
Debug.Print("Status Code: " + e.ErrorCode);
Debug.Print(e.StackTrace);
}
}
}
}This returns an ApiResponse object which contains the response data, status code and headers.
try
{
// Retrieve Inscriptiontypes and IDs
ApiResponse<InscriptiontypeGetAutocompleteV2Response> response = apiInstance.InscriptiontypeGetAutocompleteV2WithHttpInfo(sSelector, sQuery, acceptLanguage);
Debug.Write("Status Code: " + response.StatusCode);
Debug.Write("Response Headers: " + response.Headers);
Debug.Write("Response Body: " + response.Data);
}
catch (ApiException e)
{
Debug.Print("Exception when calling ObjectInscriptiontypeApi.InscriptiontypeGetAutocompleteV2WithHttpInfo: " + e.Message);
Debug.Print("Status Code: " + e.ErrorCode);
Debug.Print(e.StackTrace);
}| Name | Type | Description | Notes |
|---|---|---|---|
| sSelector | string | The type of Inscriptiontypes to return | |
| sQuery | string? | Allow to filter the returned results | [optional] |
| acceptLanguage | HeaderAcceptLanguage? | [optional] |
InscriptiontypeGetAutocompleteV2Response
- Content-Type: Not defined
- Accept: application/json
| Status code | Description | Response headers |
|---|---|---|
| 200 | Successful response | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]