Skip to content

Latest commit

 

History

History
68 lines (47 loc) · 2.23 KB

ObjectEzsignpageApi.md

File metadata and controls

68 lines (47 loc) · 2.23 KB

ObjectEzsignpageApi

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

Method HTTP request Description
ezsignpageConsultV1 POST /1/object/ezsignpage/{pkiEzsignpageID}/consult Consult an Ezsignpage

ezsignpageConsultV1

-(NSURLSessionTask*) ezsignpageConsultV1WithPkiEzsignpageID: (NSNumber*) pkiEzsignpageID
    body: (NSObject*) body
        completionHandler: (void (^)(EzsignpageConsultV1Response* output, NSError* error)) handler;

Consult an Ezsignpage

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* pkiEzsignpageID = @56; // 
NSObject* body = NULL; // 

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

// Consult an Ezsignpage
[apiInstance ezsignpageConsultV1WithPkiEzsignpageID:pkiEzsignpageID
              body:body
          completionHandler: ^(EzsignpageConsultV1Response* output, NSError* error) {
                        if (output) {
                            NSLog(@"%@", output);
                        }
                        if (error) {
                            NSLog(@"Error calling ObjectEzsignpageApi->ezsignpageConsultV1: %@", error);
                        }
                    }];

Parameters

Name Type Description Notes
pkiEzsignpageID NSNumber*
body NSObject*

Return type

EzsignpageConsultV1Response*

Authorization

Authorization

HTTP request headers

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

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