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 |
-(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.
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);
}
}];
Name | Type | Description | Notes |
---|---|---|---|
pkiEzsignfoldersignerassociationID | NSNumber* | ||
ezsignfoldersignerassociationCreateEmbeddedUrlV1Request | EzsignfoldersignerassociationCreateEmbeddedUrlV1Request* |
EzsignfoldersignerassociationCreateEmbeddedUrlV1Response*
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
-(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.
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);
}
}];
Name | Type | Description | Notes |
---|---|---|---|
ezsignfoldersignerassociationCreateObjectV1Request | NSArray<EzsignfoldersignerassociationCreateObjectV1Request>* |
EzsignfoldersignerassociationCreateObjectV1Response*
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
-(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.
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);
}
}];
Name | Type | Description | Notes |
---|---|---|---|
ezsignfoldersignerassociationCreateObjectV2Request | EzsignfoldersignerassociationCreateObjectV2Request* |
EzsignfoldersignerassociationCreateObjectV2Response*
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
-(NSURLSessionTask*) ezsignfoldersignerassociationDeleteObjectV1WithPkiEzsignfoldersignerassociationID: (NSNumber*) pkiEzsignfoldersignerassociationID
completionHandler: (void (^)(EzsignfoldersignerassociationDeleteObjectV1Response* output, NSError* error)) handler;
Delete an existing Ezsignfoldersignerassociation
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);
}
}];
Name | Type | Description | Notes |
---|---|---|---|
pkiEzsignfoldersignerassociationID | NSNumber* |
EzsignfoldersignerassociationDeleteObjectV1Response*
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
-(NSURLSessionTask*) ezsignfoldersignerassociationEditObjectV1WithPkiEzsignfoldersignerassociationID: (NSNumber*) pkiEzsignfoldersignerassociationID
ezsignfoldersignerassociationEditObjectV1Request: (EzsignfoldersignerassociationEditObjectV1Request*) ezsignfoldersignerassociationEditObjectV1Request
completionHandler: (void (^)(EzsignfoldersignerassociationEditObjectV1Response* output, NSError* error)) handler;
Edit an existing Ezsignfoldersignerassociation
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);
}
}];
Name | Type | Description | Notes |
---|---|---|---|
pkiEzsignfoldersignerassociationID | NSNumber* | ||
ezsignfoldersignerassociationEditObjectV1Request | EzsignfoldersignerassociationEditObjectV1Request* |
EzsignfoldersignerassociationEditObjectV1Response*
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
-(NSURLSessionTask*) ezsignfoldersignerassociationForceDisconnectV1WithPkiEzsignfoldersignerassociationID: (NSNumber*) pkiEzsignfoldersignerassociationID
body: (NSObject*) body
completionHandler: (void (^)(EzsignfoldersignerassociationForceDisconnectV1Response* output, NSError* error)) handler;
Disconnects the Ezsignfoldersignerassociation
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);
}
}];
Name | Type | Description | Notes |
---|---|---|---|
pkiEzsignfoldersignerassociationID | NSNumber* | ||
body | NSObject* |
EzsignfoldersignerassociationForceDisconnectV1Response*
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
-(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.
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);
}
}];
Name | Type | Description | Notes |
---|---|---|---|
pkiEzsignfoldersignerassociationID | NSNumber* |
EzsignfoldersignerassociationGetInPersonLoginUrlV1Response*
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
-(NSURLSessionTask*) ezsignfoldersignerassociationGetObjectV1WithPkiEzsignfoldersignerassociationID: (NSNumber*) pkiEzsignfoldersignerassociationID
completionHandler: (void (^)(EzsignfoldersignerassociationGetObjectV1Response* output, NSError* error)) handler;
Retrieve an existing Ezsignfoldersignerassociation
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);
}
}];
Name | Type | Description | Notes |
---|---|---|---|
pkiEzsignfoldersignerassociationID | NSNumber* |
EzsignfoldersignerassociationGetObjectV1Response*
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
-(NSURLSessionTask*) ezsignfoldersignerassociationGetObjectV2WithPkiEzsignfoldersignerassociationID: (NSNumber*) pkiEzsignfoldersignerassociationID
completionHandler: (void (^)(EzsignfoldersignerassociationGetObjectV2Response* output, NSError* error)) handler;
Retrieve an existing Ezsignfoldersignerassociation
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);
}
}];
Name | Type | Description | Notes |
---|---|---|---|
pkiEzsignfoldersignerassociationID | NSNumber* |
EzsignfoldersignerassociationGetObjectV2Response*
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
-(NSURLSessionTask*) ezsignfoldersignerassociationPatchObjectV1WithPkiEzsignfoldersignerassociationID: (NSNumber*) pkiEzsignfoldersignerassociationID
ezsignfoldersignerassociationPatchObjectV1Request: (EzsignfoldersignerassociationPatchObjectV1Request*) ezsignfoldersignerassociationPatchObjectV1Request
completionHandler: (void (^)(EzsignfoldersignerassociationPatchObjectV1Response* output, NSError* error)) handler;
Patch an existing Ezsignfoldersignerassociation
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);
}
}];
Name | Type | Description | Notes |
---|---|---|---|
pkiEzsignfoldersignerassociationID | NSNumber* | ||
ezsignfoldersignerassociationPatchObjectV1Request | EzsignfoldersignerassociationPatchObjectV1Request* |
EzsignfoldersignerassociationPatchObjectV1Response*
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
-(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
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);
}
}];
Name | Type | Description | Notes |
---|---|---|---|
pkiEzsignfoldersignerassociationID | NSNumber* | ||
ezsignfoldersignerassociationReassignV1Request | EzsignfoldersignerassociationReassignV1Request* |
EzsignfoldersignerassociationReassignV1Response*
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]