Skip to content

Latest commit

 

History

History
65 lines (43 loc) · 2.29 KB

ObjectInscriptionnotauthenticatedApi.md

File metadata and controls

65 lines (43 loc) · 2.29 KB

EzmaxApi::ObjectInscriptionnotauthenticatedApi

Load the API package

use EzmaxApi::Object::ObjectInscriptionnotauthenticatedApi;

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

Method HTTP request Description
inscriptionnotauthenticated_get_communication_list_v1 GET /1/object/inscriptionnotauthenticated/{pkiInscriptionnotauthenticatedID}/getCommunicationList Retrieve Communication list

inscriptionnotauthenticated_get_communication_list_v1

InscriptionnotauthenticatedGetCommunicationListV1Response inscriptionnotauthenticated_get_communication_list_v1(pki_inscriptionnotauthenticated_id => $pki_inscriptionnotauthenticated_id)

Retrieve Communication list

Example

use Data::Dumper;
use EzmaxApi::ObjectInscriptionnotauthenticatedApi;
my $api_instance = EzmaxApi::ObjectInscriptionnotauthenticatedApi->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 $pki_inscriptionnotauthenticated_id = 56; # int | 

eval {
    my $result = $api_instance->inscriptionnotauthenticated_get_communication_list_v1(pki_inscriptionnotauthenticated_id => $pki_inscriptionnotauthenticated_id);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling ObjectInscriptionnotauthenticatedApi->inscriptionnotauthenticated_get_communication_list_v1: $@\n";
}

Parameters

Name Type Description Notes
pki_inscriptionnotauthenticated_id int

Return type

InscriptionnotauthenticatedGetCommunicationListV1Response

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]