use EzmaxApi::Object::ObjectNotificationsectionApi;
All URIs are relative to https://prod.api.appcluster01.ca-central-1.ezmax.com/rest
Method | HTTP request | Description |
---|---|---|
notificationsection_get_notificationtests_v1 | GET /1/object/notificationsection/{pkiNotificationsectionID}/getNotificationtests | Retrieve an existing Notificationsection's Notificationtests |
NotificationsectionGetNotificationtestsV1Response notificationsection_get_notificationtests_v1(pki_notificationsection_id => $pki_notificationsection_id, b_show_hidden => $b_show_hidden)
Retrieve an existing Notificationsection's Notificationtests
use Data::Dumper;
use EzmaxApi::ObjectNotificationsectionApi;
my $api_instance = EzmaxApi::ObjectNotificationsectionApi->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_notificationsection_id = 56; # int |
my $b_show_hidden = null; # boolean | Whether or not to return the hidden Notificationtests
eval {
my $result = $api_instance->notificationsection_get_notificationtests_v1(pki_notificationsection_id => $pki_notificationsection_id, b_show_hidden => $b_show_hidden);
print Dumper($result);
};
if ($@) {
warn "Exception when calling ObjectNotificationsectionApi->notificationsection_get_notificationtests_v1: $@\n";
}
Name | Type | Description | Notes |
---|---|---|---|
pki_notificationsection_id | int | ||
b_show_hidden | boolean | Whether or not to return the hidden Notificationtests |
NotificationsectionGetNotificationtestsV1Response
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]