All URIs are relative to https://prod.api.appcluster01.ca-central-1.ezmax.com/rest
Method | HTTP request | Description |
---|---|---|
ezsignimportfolderDeleteObjectV1 | DELETE /1/object/ezsignimportfolder/{pkiEzsignimportfolderID} | Delete an existing Ezsignimportfolder |
ezsignimportfolderGetListV1 | GET /1/object/ezsignimportfolder/getList | Retrieve Ezsignimportfolder list |
ezsignimportfolderGetObjectV2 | GET /2/object/ezsignimportfolder/{pkiEzsignimportfolderID} | Retrieve an existing Ezsignimportfolder |
open class func ezsignimportfolderDeleteObjectV1(pkiEzsignimportfolderID: Int, completion: @escaping (_ data: EzsignimportfolderDeleteObjectV1Response?, _ error: Error?) -> Void)
Delete an existing Ezsignimportfolder
// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new
import OpenAPIClient
let pkiEzsignimportfolderID = 987 // Int | The unique ID of the Ezsignimportfolder
// Delete an existing Ezsignimportfolder
ObjectEzsignimportfolderAPI.ezsignimportfolderDeleteObjectV1(pkiEzsignimportfolderID: pkiEzsignimportfolderID) { (response, error) in
guard error == nil else {
print(error)
return
}
if (response) {
dump(response)
}
}
Name | Type | Description | Notes |
---|---|---|---|
pkiEzsignimportfolderID | Int | The unique ID of the Ezsignimportfolder |
EzsignimportfolderDeleteObjectV1Response
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
open class func ezsignimportfolderGetListV1(eOrderBy: EOrderBy_ezsignimportfolderGetListV1? = nil, iRowMax: Int? = nil, iRowOffset: Int? = nil, acceptLanguage: HeaderAcceptLanguage? = nil, sFilter: String? = nil, completion: @escaping (_ data: EzsignimportfolderGetListV1Response?, _ error: Error?) -> Void)
Retrieve Ezsignimportfolder list
// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new
import OpenAPIClient
let eOrderBy = "eOrderBy_example" // String | Specify how you want the results to be sorted (optional)
let iRowMax = 987 // Int | (optional)
let iRowOffset = 987 // Int | (optional) (default to 0)
let acceptLanguage = Header-Accept-Language() // HeaderAcceptLanguage | (optional)
let sFilter = "sFilter_example" // String | (optional)
// Retrieve Ezsignimportfolder list
ObjectEzsignimportfolderAPI.ezsignimportfolderGetListV1(eOrderBy: eOrderBy, iRowMax: iRowMax, iRowOffset: iRowOffset, acceptLanguage: acceptLanguage, sFilter: sFilter) { (response, error) in
guard error == nil else {
print(error)
return
}
if (response) {
dump(response)
}
}
Name | Type | Description | Notes |
---|---|---|---|
eOrderBy | String | Specify how you want the results to be sorted | [optional] |
iRowMax | Int | [optional] | |
iRowOffset | Int | [optional] [default to 0] | |
acceptLanguage | HeaderAcceptLanguage | [optional] | |
sFilter | String | [optional] |
EzsignimportfolderGetListV1Response
- Content-Type: Not defined
- Accept: application/json, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet
[Back to top] [Back to API list] [Back to Model list] [Back to README]
open class func ezsignimportfolderGetObjectV2(pkiEzsignimportfolderID: Int, completion: @escaping (_ data: EzsignimportfolderGetObjectV2Response?, _ error: Error?) -> Void)
Retrieve an existing Ezsignimportfolder
// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new
import OpenAPIClient
let pkiEzsignimportfolderID = 987 // Int | The unique ID of the Ezsignimportfolder
// Retrieve an existing Ezsignimportfolder
ObjectEzsignimportfolderAPI.ezsignimportfolderGetObjectV2(pkiEzsignimportfolderID: pkiEzsignimportfolderID) { (response, error) in
guard error == nil else {
print(error)
return
}
if (response) {
dump(response)
}
}
Name | Type | Description | Notes |
---|---|---|---|
pkiEzsignimportfolderID | Int | The unique ID of the Ezsignimportfolder |
EzsignimportfolderGetObjectV2Response
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]