All URIs are relative to https://prod.api.appcluster01.ca-central-1.ezmax.com/rest
Method | HTTP request | Description |
---|---|---|
ezsignSuggestSignersV1 | GET /1/module/ezsign/suggestSigners | Suggest signers |
ezsignSuggestTemplatesV1 | GET /1/module/ezsign/suggestTemplates | Suggest templates |
-(NSURLSessionTask*) ezsignSuggestSignersV1WithCompletionHandler:
(void (^)(EzsignSuggestSignersV1Response* output, NSError* error)) handler;
Suggest signers
Retrieve previously used Ezsignsigners and all users from the system
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"];
ModuleEzsignApi*apiInstance = [[ModuleEzsignApi alloc] init];
// Suggest signers
[apiInstance ezsignSuggestSignersV1WithCompletionHandler:
^(EzsignSuggestSignersV1Response* output, NSError* error) {
if (output) {
NSLog(@"%@", output);
}
if (error) {
NSLog(@"Error calling ModuleEzsignApi->ezsignSuggestSignersV1: %@", error);
}
}];
This endpoint does not need any parameter.
EzsignSuggestSignersV1Response*
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
-(NSURLSessionTask*) ezsignSuggestTemplatesV1WithFkiEzsignfoldertypeID: (NSNumber*) fkiEzsignfoldertypeID
completionHandler: (void (^)(EzsignSuggestTemplatesV1Response* output, NSError* error)) handler;
Suggest templates
Retrieve Ezsigntemplates and Ezsigntemplatepackages that can be imported in a Ezsignfolder
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* fkiEzsignfoldertypeID = @56; // (optional)
ModuleEzsignApi*apiInstance = [[ModuleEzsignApi alloc] init];
// Suggest templates
[apiInstance ezsignSuggestTemplatesV1WithFkiEzsignfoldertypeID:fkiEzsignfoldertypeID
completionHandler: ^(EzsignSuggestTemplatesV1Response* output, NSError* error) {
if (output) {
NSLog(@"%@", output);
}
if (error) {
NSLog(@"Error calling ModuleEzsignApi->ezsignSuggestTemplatesV1: %@", error);
}
}];
Name | Type | Description | Notes |
---|---|---|---|
fkiEzsignfoldertypeID | NSNumber* | [optional] |
EzsignSuggestTemplatesV1Response*
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]