Skip to content

Latest commit

 

History

History
59 lines (39 loc) · 2.03 KB

GlobalEzmaxclientApi.md

File metadata and controls

59 lines (39 loc) · 2.03 KB

GlobalEzmaxclientApi

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

Method HTTP request Description
globalEzmaxclientVersionV1 GET /1/ezmaxclient/{pksEzmaxclientOs}/version Retrieve the latest version of the Ezmaxclient

globalEzmaxclientVersionV1

-(NSURLSessionTask*) globalEzmaxclientVersionV1WithPksEzmaxclientOs: (FieldPksEzmaxclientOs) pksEzmaxclientOs
        completionHandler: (void (^)(GlobalEzmaxclientVersionV1Response* output, NSError* error)) handler;

Retrieve the latest version of the Ezmaxclient

Retrieve the latest version of the Ezmaxclient that is available on the store.

Example

FieldPksEzmaxclientOs pksEzmaxclientOs = [[FieldPksEzmaxclientOs alloc] init]; // 

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

// Retrieve the latest version of the Ezmaxclient
[apiInstance globalEzmaxclientVersionV1WithPksEzmaxclientOs:pksEzmaxclientOs
          completionHandler: ^(GlobalEzmaxclientVersionV1Response* output, NSError* error) {
                        if (output) {
                            NSLog(@"%@", output);
                        }
                        if (error) {
                            NSLog(@"Error calling GlobalEzmaxclientApi->globalEzmaxclientVersionV1: %@", error);
                        }
                    }];

Parameters

Name Type Description Notes
pksEzmaxclientOs FieldPksEzmaxclientOs

Return type

GlobalEzmaxclientVersionV1Response*

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]