Skip to content

Latest commit

 

History

History
57 lines (38 loc) · 1.74 KB

ObjectEzsignimportdocumentAPI.md

File metadata and controls

57 lines (38 loc) · 1.74 KB

ObjectEzsignimportdocumentAPI

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

Method HTTP request Description
ezsignimportdocumentDownloadV1 GET /1/object/ezsignimportdocument/{pkiEzsignimportdocumentID}/download Retrieve the content

ezsignimportdocumentDownloadV1

    open class func ezsignimportdocumentDownloadV1(pkiEzsignimportdocumentID: Int, completion: @escaping (_ data: EzsignimportdocumentDownloadV1Response?, _ error: Error?) -> Void)

Retrieve the content

Example

// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new
import OpenAPIClient

let pkiEzsignimportdocumentID = 987 // Int | 

// Retrieve the content
ObjectEzsignimportdocumentAPI.ezsignimportdocumentDownloadV1(pkiEzsignimportdocumentID: pkiEzsignimportdocumentID) { (response, error) in
    guard error == nil else {
        print(error)
        return
    }

    if (response) {
        dump(response)
    }
}

Parameters

Name Type Description Notes
pkiEzsignimportdocumentID Int

Return type

EzsignimportdocumentDownloadV1Response

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]