Skip to content

Latest commit

 

History

History
116 lines (79 loc) · 3.61 KB

ObjectCommunicationApi.md

File metadata and controls

116 lines (79 loc) · 3.61 KB

EzmaxApi::ObjectCommunicationApi

Load the API package

use EzmaxApi::Object::ObjectCommunicationApi;

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

Method HTTP request Description
communication_get_communication_body_v1 GET /1/object/communication/{pkiCommunicationID}/getCommunicationBody Retrieve the communication body.
communication_send_v1 POST /1/object/communication/send Send a new Communication

communication_get_communication_body_v1

communication_get_communication_body_v1(pki_communication_id => $pki_communication_id)

Retrieve the communication body.

This endpoint returns the communication body.

Example

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

eval {
    $api_instance->communication_get_communication_body_v1(pki_communication_id => $pki_communication_id);
};
if ($@) {
    warn "Exception when calling ObjectCommunicationApi->communication_get_communication_body_v1: $@\n";
}

Parameters

Name Type Description Notes
pki_communication_id int

Return type

void (empty response body)

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]

communication_send_v1

CommunicationSendV1Response communication_send_v1(communication_send_v1_request => $communication_send_v1_request)

Send a new Communication

The endpoint allows to send one or many elements at once.

Example

use Data::Dumper;
use EzmaxApi::ObjectCommunicationApi;
my $api_instance = EzmaxApi::ObjectCommunicationApi->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 $communication_send_v1_request = EzmaxApi::Object::CommunicationSendV1Request->new(); # CommunicationSendV1Request | 

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

Parameters

Name Type Description Notes
communication_send_v1_request CommunicationSendV1Request

Return type

CommunicationSendV1Response

Authorization

Authorization

HTTP request headers

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

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