Skip to content

Latest commit

 

History

History
221 lines (148 loc) · 7.39 KB

ObjectInscriptiontempApi.md

File metadata and controls

221 lines (148 loc) · 7.39 KB

EzmaxApi::ObjectInscriptiontempApi

Load the API package

use EzmaxApi::Object::ObjectInscriptiontempApi;

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

Method HTTP request Description
inscriptiontemp_get_communication_count_v1 GET /1/object/inscriptiontemp/{pkiInscriptiontempID}/getCommunicationCount Retrieve Communication count
inscriptiontemp_get_communication_list_v1 GET /1/object/inscriptiontemp/{pkiInscriptiontempID}/getCommunicationList Retrieve Communication list
inscriptiontemp_get_communicationrecipients_v1 GET /1/object/inscriptiontemp/{pkiInscriptiontempID}/getCommunicationrecipients Retrieve Inscriptiontemp's Communicationrecipient
inscriptiontemp_get_communicationsenders_v1 GET /1/object/inscriptiontemp/{pkiInscriptiontempID}/getCommunicationsenders Retrieve Inscriptiontemp's Communicationsender

inscriptiontemp_get_communication_count_v1

InscriptiontempGetCommunicationCountV1Response inscriptiontemp_get_communication_count_v1(pki_inscriptiontemp_id => $pki_inscriptiontemp_id)

Retrieve Communication count

Example

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

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

Parameters

Name Type Description Notes
pki_inscriptiontemp_id int

Return type

InscriptiontempGetCommunicationCountV1Response

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]

inscriptiontemp_get_communication_list_v1

InscriptiontempGetCommunicationListV1Response inscriptiontemp_get_communication_list_v1(pki_inscriptiontemp_id => $pki_inscriptiontemp_id)

Retrieve Communication list

Example

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

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

Parameters

Name Type Description Notes
pki_inscriptiontemp_id int

Return type

InscriptiontempGetCommunicationListV1Response

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]

inscriptiontemp_get_communicationrecipients_v1

InscriptiontempGetCommunicationrecipientsV1Response inscriptiontemp_get_communicationrecipients_v1(pki_inscriptiontemp_id => $pki_inscriptiontemp_id)

Retrieve Inscriptiontemp's Communicationrecipient

Example

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

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

Parameters

Name Type Description Notes
pki_inscriptiontemp_id int

Return type

InscriptiontempGetCommunicationrecipientsV1Response

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]

inscriptiontemp_get_communicationsenders_v1

InscriptiontempGetCommunicationsendersV1Response inscriptiontemp_get_communicationsenders_v1(pki_inscriptiontemp_id => $pki_inscriptiontemp_id)

Retrieve Inscriptiontemp's Communicationsender

Example

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

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

Parameters

Name Type Description Notes
pki_inscriptiontemp_id int

Return type

InscriptiontempGetCommunicationsendersV1Response

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]