# ModuleEzsignAPI All URIs are relative to *https://prod.api.appcluster01.ca-central-1.ezmax.com/rest* Method | HTTP request | Description ------------- | ------------- | ------------- [**ezsignSuggestSignersV1**](ModuleEzsignAPI.md#ezsignsuggestsignersv1) | **GET** /1/module/ezsign/suggestSigners | Suggest signers [**ezsignSuggestTemplatesV1**](ModuleEzsignAPI.md#ezsignsuggesttemplatesv1) | **GET** /1/module/ezsign/suggestTemplates | Suggest templates # **ezsignSuggestSignersV1** ```swift open class func ezsignSuggestSignersV1(completion: @escaping (_ data: EzsignSuggestSignersV1Response?, _ error: Error?) -> Void) ``` Suggest signers Retrieve previously used Ezsignsigners and all users from the system ### Example ```swift // The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new import OpenAPIClient // Suggest signers ModuleEzsignAPI.ezsignSuggestSignersV1() { (response, error) in guard error == nil else { print(error) return } if (response) { dump(response) } } ``` ### Parameters This endpoint does not need any parameter. ### Return type [**EzsignSuggestSignersV1Response**](EzsignSuggestSignersV1Response.md) ### Authorization [Authorization](../README.md#Authorization) ### HTTP request headers - **Content-Type**: Not defined - **Accept**: application/json [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) # **ezsignSuggestTemplatesV1** ```swift open class func ezsignSuggestTemplatesV1(fkiEzsignfoldertypeID: Int? = nil, completion: @escaping (_ data: EzsignSuggestTemplatesV1Response?, _ error: Error?) -> Void) ``` Suggest templates Retrieve Ezsigntemplates and Ezsigntemplatepackages that can be imported in a Ezsignfolder ### Example ```swift // The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new import OpenAPIClient let fkiEzsignfoldertypeID = 987 // Int | (optional) // Suggest templates ModuleEzsignAPI.ezsignSuggestTemplatesV1(fkiEzsignfoldertypeID: fkiEzsignfoldertypeID) { (response, error) in guard error == nil else { print(error) return } if (response) { dump(response) } } ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- **fkiEzsignfoldertypeID** | **Int** | | [optional] ### Return type [**EzsignSuggestTemplatesV1Response**](EzsignSuggestTemplatesV1Response.md) ### Authorization [Authorization](../README.md#Authorization) ### HTTP request headers - **Content-Type**: Not defined - **Accept**: application/json [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)