Skip to content

Latest commit

 

History

History
66 lines (43 loc) · 2.38 KB

ObjectNotificationtestApi.md

File metadata and controls

66 lines (43 loc) · 2.38 KB

ObjectNotificationtestApi

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

Method HTTP request Description
notificationtestGetElementsV1 GET /1/object/notificationtest/{pkiNotificationtestID}/getElements Retrieve an existing Notificationtest's Elements

notificationtestGetElementsV1

-(NSURLSessionTask*) notificationtestGetElementsV1WithPkiNotificationtestID: (NSNumber*) pkiNotificationtestID
        completionHandler: (void (^)(NotificationtestGetElementsV1Response* output, NSError* error)) handler;

Retrieve an existing Notificationtest's Elements

Example

DefaultConfiguration *apiConfig = [DefaultConfiguration sharedConfig];

// Configure API key authorization: (authentication scheme: Authorization)
[apiConfig setApiKey:@"YOUR_API_KEY" forApiKeyIdentifier:@"Authorization"];
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//[apiConfig setApiKeyPrefix:@"Bearer" forApiKeyIdentifier:@"Authorization"];


NSNumber* pkiNotificationtestID = @56; // 

ObjectNotificationtestApi*apiInstance = [[ObjectNotificationtestApi alloc] init];

// Retrieve an existing Notificationtest's Elements
[apiInstance notificationtestGetElementsV1WithPkiNotificationtestID:pkiNotificationtestID
          completionHandler: ^(NotificationtestGetElementsV1Response* output, NSError* error) {
                        if (output) {
                            NSLog(@"%@", output);
                        }
                        if (error) {
                            NSLog(@"Error calling ObjectNotificationtestApi->notificationtestGetElementsV1: %@", error);
                        }
                    }];

Parameters

Name Type Description Notes
pkiNotificationtestID NSNumber*

Return type

NotificationtestGetElementsV1Response*

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]