Skip to content

Latest commit

 

History

History
65 lines (43 loc) · 2.2 KB

ObjectElectronicfundstransferApi.md

File metadata and controls

65 lines (43 loc) · 2.2 KB

EzmaxApi::ObjectElectronicfundstransferApi

Load the API package

use EzmaxApi::Object::ObjectElectronicfundstransferApi;

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

Method HTTP request Description
electronicfundstransfer_get_communication_list_v1 GET /1/object/electronicfundstransfer/{pkiElectronicfundstransferID}/getCommunicationList Retrieve Communication list

electronicfundstransfer_get_communication_list_v1

ElectronicfundstransferGetCommunicationListV1Response electronicfundstransfer_get_communication_list_v1(pki_electronicfundstransfer_id => $pki_electronicfundstransfer_id)

Retrieve Communication list

Example

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

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

Parameters

Name Type Description Notes
pki_electronicfundstransfer_id int

Return type

ElectronicfundstransferGetCommunicationListV1Response

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]