Skip to content

Files

Latest commit

 

History

History
664 lines (458 loc) · 31.2 KB

ObjectEzsignfoldersignerassociationApi.md

File metadata and controls

664 lines (458 loc) · 31.2 KB

ObjectEzsignfoldersignerassociationApi

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

Method HTTP request Description
ezsignfoldersignerassociationCreateEmbeddedUrlV1 POST /1/object/ezsignfoldersignerassociation/{pkiEzsignfoldersignerassociationID}/createEmbeddedUrl Creates an Url to allow embedded signing
ezsignfoldersignerassociationCreateObjectV1 POST /1/object/ezsignfoldersignerassociation Create a new Ezsignfoldersignerassociation
ezsignfoldersignerassociationCreateObjectV2 POST /2/object/ezsignfoldersignerassociation Create a new Ezsignfoldersignerassociation
ezsignfoldersignerassociationDeleteObjectV1 DELETE /1/object/ezsignfoldersignerassociation/{pkiEzsignfoldersignerassociationID} Delete an existing Ezsignfoldersignerassociation
ezsignfoldersignerassociationEditObjectV1 PUT /1/object/ezsignfoldersignerassociation/{pkiEzsignfoldersignerassociationID} Edit an existing Ezsignfoldersignerassociation
ezsignfoldersignerassociationForceDisconnectV1 POST /1/object/ezsignfoldersignerassociation/{pkiEzsignfoldersignerassociationID}/forceDisconnect Disconnects the Ezsignfoldersignerassociation
ezsignfoldersignerassociationGetInPersonLoginUrlV1 GET /1/object/ezsignfoldersignerassociation/{pkiEzsignfoldersignerassociationID}/getInPersonLoginUrl Retrieve a Login Url to allow In-Person signing
ezsignfoldersignerassociationGetObjectV1 GET /1/object/ezsignfoldersignerassociation/{pkiEzsignfoldersignerassociationID} Retrieve an existing Ezsignfoldersignerassociation
ezsignfoldersignerassociationGetObjectV2 GET /2/object/ezsignfoldersignerassociation/{pkiEzsignfoldersignerassociationID} Retrieve an existing Ezsignfoldersignerassociation
ezsignfoldersignerassociationPatchObjectV1 PATCH /1/object/ezsignfoldersignerassociation/{pkiEzsignfoldersignerassociationID} Patch an existing Ezsignfoldersignerassociation
ezsignfoldersignerassociationReassignV1 POST /1/object/ezsignfoldersignerassociation/{pkiEzsignfoldersignerassociationID}/reassign Reassign remaining unsigned signatures and forms

ezsignfoldersignerassociationCreateEmbeddedUrlV1

-(NSURLSessionTask*) ezsignfoldersignerassociationCreateEmbeddedUrlV1WithPkiEzsignfoldersignerassociationID: (NSNumber*) pkiEzsignfoldersignerassociationID
    ezsignfoldersignerassociationCreateEmbeddedUrlV1Request: (EzsignfoldersignerassociationCreateEmbeddedUrlV1Request*) ezsignfoldersignerassociationCreateEmbeddedUrlV1Request
        completionHandler: (void (^)(EzsignfoldersignerassociationCreateEmbeddedUrlV1Response* output, NSError* error)) handler;

Creates an Url to allow embedded signing

This endpoint creates an Url that can be used in a browser or embedded in an I-Frame to allow signing. The signer Login type must be configured as Embedded.

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* pkiEzsignfoldersignerassociationID = @56; // 
EzsignfoldersignerassociationCreateEmbeddedUrlV1Request* ezsignfoldersignerassociationCreateEmbeddedUrlV1Request = [[EzsignfoldersignerassociationCreateEmbeddedUrlV1Request alloc] init]; // 

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

// Creates an Url to allow embedded signing
[apiInstance ezsignfoldersignerassociationCreateEmbeddedUrlV1WithPkiEzsignfoldersignerassociationID:pkiEzsignfoldersignerassociationID
              ezsignfoldersignerassociationCreateEmbeddedUrlV1Request:ezsignfoldersignerassociationCreateEmbeddedUrlV1Request
          completionHandler: ^(EzsignfoldersignerassociationCreateEmbeddedUrlV1Response* output, NSError* error) {
                        if (output) {
                            NSLog(@"%@", output);
                        }
                        if (error) {
                            NSLog(@"Error calling ObjectEzsignfoldersignerassociationApi->ezsignfoldersignerassociationCreateEmbeddedUrlV1: %@", error);
                        }
                    }];

Parameters

Name Type Description Notes
pkiEzsignfoldersignerassociationID NSNumber*
ezsignfoldersignerassociationCreateEmbeddedUrlV1Request EzsignfoldersignerassociationCreateEmbeddedUrlV1Request*

Return type

EzsignfoldersignerassociationCreateEmbeddedUrlV1Response*

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]

ezsignfoldersignerassociationCreateObjectV1

-(NSURLSessionTask*) ezsignfoldersignerassociationCreateObjectV1WithEzsignfoldersignerassociationCreateObjectV1Request: (NSArray<EzsignfoldersignerassociationCreateObjectV1Request>*) ezsignfoldersignerassociationCreateObjectV1Request
        completionHandler: (void (^)(EzsignfoldersignerassociationCreateObjectV1Response* output, NSError* error)) handler;

Create a new Ezsignfoldersignerassociation

The endpoint allows to create one or many elements at once. The array can contain simple (Just the object) or compound (The object and its child) objects. Creating compound elements allows to reduce the multiple requests to create all child objects.

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"];


NSArray<EzsignfoldersignerassociationCreateObjectV1Request>* ezsignfoldersignerassociationCreateObjectV1Request = @[[[EzsignfoldersignerassociationCreateObjectV1Request alloc] init]]; // 

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

// Create a new Ezsignfoldersignerassociation
[apiInstance ezsignfoldersignerassociationCreateObjectV1WithEzsignfoldersignerassociationCreateObjectV1Request:ezsignfoldersignerassociationCreateObjectV1Request
          completionHandler: ^(EzsignfoldersignerassociationCreateObjectV1Response* output, NSError* error) {
                        if (output) {
                            NSLog(@"%@", output);
                        }
                        if (error) {
                            NSLog(@"Error calling ObjectEzsignfoldersignerassociationApi->ezsignfoldersignerassociationCreateObjectV1: %@", error);
                        }
                    }];

Parameters

Name Type Description Notes
ezsignfoldersignerassociationCreateObjectV1Request NSArray<EzsignfoldersignerassociationCreateObjectV1Request>*

Return type

EzsignfoldersignerassociationCreateObjectV1Response*

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]

ezsignfoldersignerassociationCreateObjectV2

-(NSURLSessionTask*) ezsignfoldersignerassociationCreateObjectV2WithEzsignfoldersignerassociationCreateObjectV2Request: (EzsignfoldersignerassociationCreateObjectV2Request*) ezsignfoldersignerassociationCreateObjectV2Request
        completionHandler: (void (^)(EzsignfoldersignerassociationCreateObjectV2Response* output, NSError* error)) handler;

Create a new Ezsignfoldersignerassociation

The endpoint allows to create one or many elements at once.

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"];


EzsignfoldersignerassociationCreateObjectV2Request* ezsignfoldersignerassociationCreateObjectV2Request = [[EzsignfoldersignerassociationCreateObjectV2Request alloc] init]; // 

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

// Create a new Ezsignfoldersignerassociation
[apiInstance ezsignfoldersignerassociationCreateObjectV2WithEzsignfoldersignerassociationCreateObjectV2Request:ezsignfoldersignerassociationCreateObjectV2Request
          completionHandler: ^(EzsignfoldersignerassociationCreateObjectV2Response* output, NSError* error) {
                        if (output) {
                            NSLog(@"%@", output);
                        }
                        if (error) {
                            NSLog(@"Error calling ObjectEzsignfoldersignerassociationApi->ezsignfoldersignerassociationCreateObjectV2: %@", error);
                        }
                    }];

Parameters

Name Type Description Notes
ezsignfoldersignerassociationCreateObjectV2Request EzsignfoldersignerassociationCreateObjectV2Request*

Return type

EzsignfoldersignerassociationCreateObjectV2Response*

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]

ezsignfoldersignerassociationDeleteObjectV1

-(NSURLSessionTask*) ezsignfoldersignerassociationDeleteObjectV1WithPkiEzsignfoldersignerassociationID: (NSNumber*) pkiEzsignfoldersignerassociationID
        completionHandler: (void (^)(EzsignfoldersignerassociationDeleteObjectV1Response* output, NSError* error)) handler;

Delete an existing Ezsignfoldersignerassociation

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* pkiEzsignfoldersignerassociationID = @56; // 

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

// Delete an existing Ezsignfoldersignerassociation
[apiInstance ezsignfoldersignerassociationDeleteObjectV1WithPkiEzsignfoldersignerassociationID:pkiEzsignfoldersignerassociationID
          completionHandler: ^(EzsignfoldersignerassociationDeleteObjectV1Response* output, NSError* error) {
                        if (output) {
                            NSLog(@"%@", output);
                        }
                        if (error) {
                            NSLog(@"Error calling ObjectEzsignfoldersignerassociationApi->ezsignfoldersignerassociationDeleteObjectV1: %@", error);
                        }
                    }];

Parameters

Name Type Description Notes
pkiEzsignfoldersignerassociationID NSNumber*

Return type

EzsignfoldersignerassociationDeleteObjectV1Response*

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]

ezsignfoldersignerassociationEditObjectV1

-(NSURLSessionTask*) ezsignfoldersignerassociationEditObjectV1WithPkiEzsignfoldersignerassociationID: (NSNumber*) pkiEzsignfoldersignerassociationID
    ezsignfoldersignerassociationEditObjectV1Request: (EzsignfoldersignerassociationEditObjectV1Request*) ezsignfoldersignerassociationEditObjectV1Request
        completionHandler: (void (^)(EzsignfoldersignerassociationEditObjectV1Response* output, NSError* error)) handler;

Edit an existing Ezsignfoldersignerassociation

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* pkiEzsignfoldersignerassociationID = @56; // 
EzsignfoldersignerassociationEditObjectV1Request* ezsignfoldersignerassociationEditObjectV1Request = [[EzsignfoldersignerassociationEditObjectV1Request alloc] init]; // 

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

// Edit an existing Ezsignfoldersignerassociation
[apiInstance ezsignfoldersignerassociationEditObjectV1WithPkiEzsignfoldersignerassociationID:pkiEzsignfoldersignerassociationID
              ezsignfoldersignerassociationEditObjectV1Request:ezsignfoldersignerassociationEditObjectV1Request
          completionHandler: ^(EzsignfoldersignerassociationEditObjectV1Response* output, NSError* error) {
                        if (output) {
                            NSLog(@"%@", output);
                        }
                        if (error) {
                            NSLog(@"Error calling ObjectEzsignfoldersignerassociationApi->ezsignfoldersignerassociationEditObjectV1: %@", error);
                        }
                    }];

Parameters

Name Type Description Notes
pkiEzsignfoldersignerassociationID NSNumber*
ezsignfoldersignerassociationEditObjectV1Request EzsignfoldersignerassociationEditObjectV1Request*

Return type

EzsignfoldersignerassociationEditObjectV1Response*

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]

ezsignfoldersignerassociationForceDisconnectV1

-(NSURLSessionTask*) ezsignfoldersignerassociationForceDisconnectV1WithPkiEzsignfoldersignerassociationID: (NSNumber*) pkiEzsignfoldersignerassociationID
    body: (NSObject*) body
        completionHandler: (void (^)(EzsignfoldersignerassociationForceDisconnectV1Response* output, NSError* error)) handler;

Disconnects the Ezsignfoldersignerassociation

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

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

// Disconnects the Ezsignfoldersignerassociation
[apiInstance ezsignfoldersignerassociationForceDisconnectV1WithPkiEzsignfoldersignerassociationID:pkiEzsignfoldersignerassociationID
              body:body
          completionHandler: ^(EzsignfoldersignerassociationForceDisconnectV1Response* output, NSError* error) {
                        if (output) {
                            NSLog(@"%@", output);
                        }
                        if (error) {
                            NSLog(@"Error calling ObjectEzsignfoldersignerassociationApi->ezsignfoldersignerassociationForceDisconnectV1: %@", error);
                        }
                    }];

Parameters

Name Type Description Notes
pkiEzsignfoldersignerassociationID NSNumber*
body NSObject*

Return type

EzsignfoldersignerassociationForceDisconnectV1Response*

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]

ezsignfoldersignerassociationGetInPersonLoginUrlV1

-(NSURLSessionTask*) ezsignfoldersignerassociationGetInPersonLoginUrlV1WithPkiEzsignfoldersignerassociationID: (NSNumber*) pkiEzsignfoldersignerassociationID
        completionHandler: (void (^)(EzsignfoldersignerassociationGetInPersonLoginUrlV1Response* output, NSError* error)) handler;

Retrieve a Login Url to allow In-Person signing

This endpoint returns a Login Url that can be used in a browser or embedded in an I-Frame to allow in person signing. The signer Login type must be configured as In-Person.

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* pkiEzsignfoldersignerassociationID = @56; // 

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

// Retrieve a Login Url to allow In-Person signing
[apiInstance ezsignfoldersignerassociationGetInPersonLoginUrlV1WithPkiEzsignfoldersignerassociationID:pkiEzsignfoldersignerassociationID
          completionHandler: ^(EzsignfoldersignerassociationGetInPersonLoginUrlV1Response* output, NSError* error) {
                        if (output) {
                            NSLog(@"%@", output);
                        }
                        if (error) {
                            NSLog(@"Error calling ObjectEzsignfoldersignerassociationApi->ezsignfoldersignerassociationGetInPersonLoginUrlV1: %@", error);
                        }
                    }];

Parameters

Name Type Description Notes
pkiEzsignfoldersignerassociationID NSNumber*

Return type

EzsignfoldersignerassociationGetInPersonLoginUrlV1Response*

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]

ezsignfoldersignerassociationGetObjectV1

-(NSURLSessionTask*) ezsignfoldersignerassociationGetObjectV1WithPkiEzsignfoldersignerassociationID: (NSNumber*) pkiEzsignfoldersignerassociationID
        completionHandler: (void (^)(EzsignfoldersignerassociationGetObjectV1Response* output, NSError* error)) handler;

Retrieve an existing Ezsignfoldersignerassociation

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* pkiEzsignfoldersignerassociationID = @56; // 

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

// Retrieve an existing Ezsignfoldersignerassociation
[apiInstance ezsignfoldersignerassociationGetObjectV1WithPkiEzsignfoldersignerassociationID:pkiEzsignfoldersignerassociationID
          completionHandler: ^(EzsignfoldersignerassociationGetObjectV1Response* output, NSError* error) {
                        if (output) {
                            NSLog(@"%@", output);
                        }
                        if (error) {
                            NSLog(@"Error calling ObjectEzsignfoldersignerassociationApi->ezsignfoldersignerassociationGetObjectV1: %@", error);
                        }
                    }];

Parameters

Name Type Description Notes
pkiEzsignfoldersignerassociationID NSNumber*

Return type

EzsignfoldersignerassociationGetObjectV1Response*

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]

ezsignfoldersignerassociationGetObjectV2

-(NSURLSessionTask*) ezsignfoldersignerassociationGetObjectV2WithPkiEzsignfoldersignerassociationID: (NSNumber*) pkiEzsignfoldersignerassociationID
        completionHandler: (void (^)(EzsignfoldersignerassociationGetObjectV2Response* output, NSError* error)) handler;

Retrieve an existing Ezsignfoldersignerassociation

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* pkiEzsignfoldersignerassociationID = @56; // 

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

// Retrieve an existing Ezsignfoldersignerassociation
[apiInstance ezsignfoldersignerassociationGetObjectV2WithPkiEzsignfoldersignerassociationID:pkiEzsignfoldersignerassociationID
          completionHandler: ^(EzsignfoldersignerassociationGetObjectV2Response* output, NSError* error) {
                        if (output) {
                            NSLog(@"%@", output);
                        }
                        if (error) {
                            NSLog(@"Error calling ObjectEzsignfoldersignerassociationApi->ezsignfoldersignerassociationGetObjectV2: %@", error);
                        }
                    }];

Parameters

Name Type Description Notes
pkiEzsignfoldersignerassociationID NSNumber*

Return type

EzsignfoldersignerassociationGetObjectV2Response*

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]

ezsignfoldersignerassociationPatchObjectV1

-(NSURLSessionTask*) ezsignfoldersignerassociationPatchObjectV1WithPkiEzsignfoldersignerassociationID: (NSNumber*) pkiEzsignfoldersignerassociationID
    ezsignfoldersignerassociationPatchObjectV1Request: (EzsignfoldersignerassociationPatchObjectV1Request*) ezsignfoldersignerassociationPatchObjectV1Request
        completionHandler: (void (^)(EzsignfoldersignerassociationPatchObjectV1Response* output, NSError* error)) handler;

Patch an existing Ezsignfoldersignerassociation

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* pkiEzsignfoldersignerassociationID = @56; // 
EzsignfoldersignerassociationPatchObjectV1Request* ezsignfoldersignerassociationPatchObjectV1Request = [[EzsignfoldersignerassociationPatchObjectV1Request alloc] init]; // 

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

// Patch an existing Ezsignfoldersignerassociation
[apiInstance ezsignfoldersignerassociationPatchObjectV1WithPkiEzsignfoldersignerassociationID:pkiEzsignfoldersignerassociationID
              ezsignfoldersignerassociationPatchObjectV1Request:ezsignfoldersignerassociationPatchObjectV1Request
          completionHandler: ^(EzsignfoldersignerassociationPatchObjectV1Response* output, NSError* error) {
                        if (output) {
                            NSLog(@"%@", output);
                        }
                        if (error) {
                            NSLog(@"Error calling ObjectEzsignfoldersignerassociationApi->ezsignfoldersignerassociationPatchObjectV1: %@", error);
                        }
                    }];

Parameters

Name Type Description Notes
pkiEzsignfoldersignerassociationID NSNumber*
ezsignfoldersignerassociationPatchObjectV1Request EzsignfoldersignerassociationPatchObjectV1Request*

Return type

EzsignfoldersignerassociationPatchObjectV1Response*

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]

ezsignfoldersignerassociationReassignV1

-(NSURLSessionTask*) ezsignfoldersignerassociationReassignV1WithPkiEzsignfoldersignerassociationID: (NSNumber*) pkiEzsignfoldersignerassociationID
    ezsignfoldersignerassociationReassignV1Request: (EzsignfoldersignerassociationReassignV1Request*) ezsignfoldersignerassociationReassignV1Request
        completionHandler: (void (^)(EzsignfoldersignerassociationReassignV1Response* output, NSError* error)) handler;

Reassign remaining unsigned signatures and forms

Reassign remaining unsigned signatures and forms

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* pkiEzsignfoldersignerassociationID = @56; // 
EzsignfoldersignerassociationReassignV1Request* ezsignfoldersignerassociationReassignV1Request = [[EzsignfoldersignerassociationReassignV1Request alloc] init]; // 

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

// Reassign remaining unsigned signatures and forms
[apiInstance ezsignfoldersignerassociationReassignV1WithPkiEzsignfoldersignerassociationID:pkiEzsignfoldersignerassociationID
              ezsignfoldersignerassociationReassignV1Request:ezsignfoldersignerassociationReassignV1Request
          completionHandler: ^(EzsignfoldersignerassociationReassignV1Response* output, NSError* error) {
                        if (output) {
                            NSLog(@"%@", output);
                        }
                        if (error) {
                            NSLog(@"Error calling ObjectEzsignfoldersignerassociationApi->ezsignfoldersignerassociationReassignV1: %@", error);
                        }
                    }];

Parameters

Name Type Description Notes
pkiEzsignfoldersignerassociationID NSNumber*
ezsignfoldersignerassociationReassignV1Request EzsignfoldersignerassociationReassignV1Request*

Return type

EzsignfoldersignerassociationReassignV1Response*

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]