Skip to content

Files

Latest commit

b099286 · Jan 14, 2025

History

History
69 lines (48 loc) · 2.43 KB

ObjectContacttitleApi.md

File metadata and controls

69 lines (48 loc) · 2.43 KB

EzmaxApi::ObjectContacttitleApi

Load the API package

use EzmaxApi::Object::ObjectContacttitleApi;

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

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

contacttitle_get_autocomplete_v2

ContacttitleGetAutocompleteV2Response contacttitle_get_autocomplete_v2(s_selector => $s_selector, s_query => $s_query, accept_language => $accept_language)

Retrieve Contacttitles and IDs

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

Example

use Data::Dumper;
use EzmaxApi::ObjectContacttitleApi;
my $api_instance = EzmaxApi::ObjectContacttitleApi->new(

    # Configure API key authorization: Authorization
    api_key => {'Authorization' => 'YOUR_API_KEY'},
    # uncomment below to setup prefix (e.g. Bearer) for API key, if needed
    #api_key_prefix => {'Authorization' => 'Bearer'},
);

my $s_selector = "s_selector_example"; # string | The type of Contacttitles to return
my $s_query = "s_query_example"; # string | Allow to filter the returned results
my $accept_language = new EzmaxApi.HeaderAcceptLanguage(); # HeaderAcceptLanguage | 

eval {
    my $result = $api_instance->contacttitle_get_autocomplete_v2(s_selector => $s_selector, s_query => $s_query, accept_language => $accept_language);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling ObjectContacttitleApi->contacttitle_get_autocomplete_v2: $@\n";
}

Parameters

Name Type Description Notes
s_selector string The type of Contacttitles to return
s_query string Allow to filter the returned results [optional]
accept_language 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]