All URIs are relative to https://prod.api.appcluster01.ca-central-1.ezmax.com/rest
Method | HTTP request | Description |
---|---|---|
systemconfigurationEditObjectV1 | PUT /1/object/systemconfiguration/{pkiSystemconfigurationID} | Edit an existing Systemconfiguration |
systemconfigurationGetObjectV2 | GET /2/object/systemconfiguration/{pkiSystemconfigurationID} | Retrieve an existing Systemconfiguration |
-(NSURLSessionTask*) systemconfigurationEditObjectV1WithPkiSystemconfigurationID: (NSNumber*) pkiSystemconfigurationID
systemconfigurationEditObjectV1Request: (SystemconfigurationEditObjectV1Request*) systemconfigurationEditObjectV1Request
completionHandler: (void (^)(SystemconfigurationEditObjectV1Response* output, NSError* error)) handler;
Edit an existing Systemconfiguration
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* pkiSystemconfigurationID = @56; // The unique ID of the Systemconfiguration
SystemconfigurationEditObjectV1Request* systemconfigurationEditObjectV1Request = [[SystemconfigurationEditObjectV1Request alloc] init]; //
ObjectSystemconfigurationApi*apiInstance = [[ObjectSystemconfigurationApi alloc] init];
// Edit an existing Systemconfiguration
[apiInstance systemconfigurationEditObjectV1WithPkiSystemconfigurationID:pkiSystemconfigurationID
systemconfigurationEditObjectV1Request:systemconfigurationEditObjectV1Request
completionHandler: ^(SystemconfigurationEditObjectV1Response* output, NSError* error) {
if (output) {
NSLog(@"%@", output);
}
if (error) {
NSLog(@"Error calling ObjectSystemconfigurationApi->systemconfigurationEditObjectV1: %@", error);
}
}];
Name | Type | Description | Notes |
---|---|---|---|
pkiSystemconfigurationID | NSNumber* | The unique ID of the Systemconfiguration | |
systemconfigurationEditObjectV1Request | SystemconfigurationEditObjectV1Request* |
SystemconfigurationEditObjectV1Response*
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
-(NSURLSessionTask*) systemconfigurationGetObjectV2WithPkiSystemconfigurationID: (NSNumber*) pkiSystemconfigurationID
completionHandler: (void (^)(SystemconfigurationGetObjectV2Response* output, NSError* error)) handler;
Retrieve an existing Systemconfiguration
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* pkiSystemconfigurationID = @56; // The unique ID of the Systemconfiguration
ObjectSystemconfigurationApi*apiInstance = [[ObjectSystemconfigurationApi alloc] init];
// Retrieve an existing Systemconfiguration
[apiInstance systemconfigurationGetObjectV2WithPkiSystemconfigurationID:pkiSystemconfigurationID
completionHandler: ^(SystemconfigurationGetObjectV2Response* output, NSError* error) {
if (output) {
NSLog(@"%@", output);
}
if (error) {
NSLog(@"Error calling ObjectSystemconfigurationApi->systemconfigurationGetObjectV2: %@", error);
}
}];
Name | Type | Description | Notes |
---|---|---|---|
pkiSystemconfigurationID | NSNumber* | The unique ID of the Systemconfiguration |
SystemconfigurationGetObjectV2Response*
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]