All URIs are relative to https://prod.api.appcluster01.ca-central-1.ezmax.com/rest
Method | HTTP request | Description |
---|---|---|
modulegroupGetAllV1 | GET /1/object/modulegroup/getAll/{eContext} | Retrieve all Modulegroups |
-(NSURLSessionTask*) modulegroupGetAllV1WithEContext: (NSString*) eContext
completionHandler: (void (^)(ModulegroupGetAllV1Response* output, NSError* error)) handler;
Retrieve all Modulegroups
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"];
NSString* eContext = @"eContext_example"; // The context of the Modulegroup
ObjectModulegroupApi*apiInstance = [[ObjectModulegroupApi alloc] init];
// Retrieve all Modulegroups
[apiInstance modulegroupGetAllV1WithEContext:eContext
completionHandler: ^(ModulegroupGetAllV1Response* output, NSError* error) {
if (output) {
NSLog(@"%@", output);
}
if (error) {
NSLog(@"Error calling ObjectModulegroupApi->modulegroupGetAllV1: %@", error);
}
}];
Name | Type | Description | Notes |
---|---|---|---|
eContext | NSString* | The context of the Modulegroup |
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]