Skip to content

Latest commit

 

History

History
65 lines (45 loc) · 2.3 KB

ObjectContacttitleApi.md

File metadata and controls

65 lines (45 loc) · 2.3 KB

openapi.api.ObjectContacttitleApi

Load the API package

import 'package:openapi/api.dart';

All URIs are relative to https://prod.api.appcluster01.ca-central-1.ezmax.com/rest

Method HTTP request Description
contacttitleGetAutocompleteV2 GET /2/object/contacttitle/getAutocomplete/{sSelector} Retrieve Contacttitles and IDs

contacttitleGetAutocompleteV2

ContacttitleGetAutocompleteV2Response contacttitleGetAutocompleteV2(sSelector, sQuery, acceptLanguage)

Retrieve Contacttitles and IDs

Get the list of Contacttitle to be used in a dropdown or autocomplete control.

Example

import 'package:openapi/api.dart';
// TODO Configure API key authorization: Authorization
//defaultApiClient.getAuthentication<ApiKeyAuth>('Authorization').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication<ApiKeyAuth>('Authorization').apiKeyPrefix = 'Bearer';

final api_instance = ObjectContacttitleApi();
final sSelector = sSelector_example; // String | The type of Contacttitles to return
final sQuery = sQuery_example; // String | Allow to filter the returned results
final acceptLanguage = ; // HeaderAcceptLanguage | 

try {
    final result = api_instance.contacttitleGetAutocompleteV2(sSelector, sQuery, acceptLanguage);
    print(result);
} catch (e) {
    print('Exception when calling ObjectContacttitleApi->contacttitleGetAutocompleteV2: $e\n');
}

Parameters

Name Type Description Notes
sSelector String The type of Contacttitles to return
sQuery String Allow to filter the returned results [optional]
acceptLanguage HeaderAcceptLanguage [optional]

Return type

ContacttitleGetAutocompleteV2Response

Authorization

Authorization

HTTP request headers

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

[Back to top] [Back to API list] [Back to Model list] [Back to README]