use EzmaxApi::Object::ObjectInscriptionApi;
All URIs are relative to https://prod.api.appcluster01.ca-central-1.ezmax.com/rest
Method | HTTP request | Description |
---|---|---|
inscription_get_attachments_v1 | GET /1/object/inscription/{pkiInscriptionID}/getAttachments | Retrieve Inscription's Attachments |
inscription_get_communication_list_v1 | GET /1/object/inscription/{pkiInscriptionID}/getCommunicationList | Retrieve Communication list |
inscription_get_communicationsenders_v1 | GET /1/object/inscription/{pkiInscriptionID}/getCommunicationsenders | Retrieve Inscription's Communicationsender |
InscriptionGetAttachmentsV1Response inscription_get_attachments_v1(pki_inscription_id => $pki_inscription_id)
Retrieve Inscription's Attachments
use Data::Dumper;
use EzmaxApi::ObjectInscriptionApi;
my $api_instance = EzmaxApi::ObjectInscriptionApi->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_inscription_id = 56; # int |
eval {
my $result = $api_instance->inscription_get_attachments_v1(pki_inscription_id => $pki_inscription_id);
print Dumper($result);
};
if ($@) {
warn "Exception when calling ObjectInscriptionApi->inscription_get_attachments_v1: $@\n";
}
Name | Type | Description | Notes |
---|---|---|---|
pki_inscription_id | int |
InscriptionGetAttachmentsV1Response
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
InscriptionGetCommunicationListV1Response inscription_get_communication_list_v1(pki_inscription_id => $pki_inscription_id)
Retrieve Communication list
use Data::Dumper;
use EzmaxApi::ObjectInscriptionApi;
my $api_instance = EzmaxApi::ObjectInscriptionApi->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_inscription_id = 56; # int |
eval {
my $result = $api_instance->inscription_get_communication_list_v1(pki_inscription_id => $pki_inscription_id);
print Dumper($result);
};
if ($@) {
warn "Exception when calling ObjectInscriptionApi->inscription_get_communication_list_v1: $@\n";
}
Name | Type | Description | Notes |
---|---|---|---|
pki_inscription_id | int |
InscriptionGetCommunicationListV1Response
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
InscriptionGetCommunicationsendersV1Response inscription_get_communicationsenders_v1(pki_inscription_id => $pki_inscription_id)
Retrieve Inscription's Communicationsender
use Data::Dumper;
use EzmaxApi::ObjectInscriptionApi;
my $api_instance = EzmaxApi::ObjectInscriptionApi->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_inscription_id = 56; # int |
eval {
my $result = $api_instance->inscription_get_communicationsenders_v1(pki_inscription_id => $pki_inscription_id);
print Dumper($result);
};
if ($@) {
warn "Exception when calling ObjectInscriptionApi->inscription_get_communicationsenders_v1: $@\n";
}
Name | Type | Description | Notes |
---|---|---|---|
pki_inscription_id | int |
InscriptionGetCommunicationsendersV1Response
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]