All URIs are relative to https://prod.api.appcluster01.ca-central-1.ezmax.com/rest
Method | HTTP request | Description |
---|---|---|
ezsigntemplatesignerCreateObjectV1 | POST /1/object/ezsigntemplatesigner | Create a new Ezsigntemplatesigner |
ezsigntemplatesignerDeleteObjectV1 | DELETE /1/object/ezsigntemplatesigner/{pkiEzsigntemplatesignerID} | Delete an existing Ezsigntemplatesigner |
ezsigntemplatesignerEditObjectV1 | PUT /1/object/ezsigntemplatesigner/{pkiEzsigntemplatesignerID} | Edit an existing Ezsigntemplatesigner |
ezsigntemplatesignerGetObjectV2 | GET /2/object/ezsigntemplatesigner/{pkiEzsigntemplatesignerID} | Retrieve an existing Ezsigntemplatesigner |
open class func ezsigntemplatesignerCreateObjectV1(ezsigntemplatesignerCreateObjectV1Request: EzsigntemplatesignerCreateObjectV1Request, completion: @escaping (_ data: EzsigntemplatesignerCreateObjectV1Response?, _ error: Error?) -> Void)
Create a new Ezsigntemplatesigner
The endpoint allows to create one or many elements at once.
// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new
import OpenAPIClient
let ezsigntemplatesignerCreateObjectV1Request = ezsigntemplatesigner-createObject-v1-Request(aObjEzsigntemplatesigner: [ezsigntemplatesigner-RequestCompound(pkiEzsigntemplatesignerID: 123, fkiEzsigntemplateID: 123, fkiUserID: 123, fkiUsergroupID: 123, fkiEzdoctemplatedocumentID: 123, bEzsigntemplatesignerReceivecopy: false, eEzsigntemplatesignerMapping: Field-eEzsigntemplatesignerMapping(), sEzsigntemplatesignerDescription: "sEzsigntemplatesignerDescription_example")]) // EzsigntemplatesignerCreateObjectV1Request |
// Create a new Ezsigntemplatesigner
ObjectEzsigntemplatesignerAPI.ezsigntemplatesignerCreateObjectV1(ezsigntemplatesignerCreateObjectV1Request: ezsigntemplatesignerCreateObjectV1Request) { (response, error) in
guard error == nil else {
print(error)
return
}
if (response) {
dump(response)
}
}
Name | Type | Description | Notes |
---|---|---|---|
ezsigntemplatesignerCreateObjectV1Request | EzsigntemplatesignerCreateObjectV1Request |
EzsigntemplatesignerCreateObjectV1Response
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
open class func ezsigntemplatesignerDeleteObjectV1(pkiEzsigntemplatesignerID: Int, completion: @escaping (_ data: EzsigntemplatesignerDeleteObjectV1Response?, _ error: Error?) -> Void)
Delete an existing Ezsigntemplatesigner
// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new
import OpenAPIClient
let pkiEzsigntemplatesignerID = 987 // Int |
// Delete an existing Ezsigntemplatesigner
ObjectEzsigntemplatesignerAPI.ezsigntemplatesignerDeleteObjectV1(pkiEzsigntemplatesignerID: pkiEzsigntemplatesignerID) { (response, error) in
guard error == nil else {
print(error)
return
}
if (response) {
dump(response)
}
}
Name | Type | Description | Notes |
---|---|---|---|
pkiEzsigntemplatesignerID | Int |
EzsigntemplatesignerDeleteObjectV1Response
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
open class func ezsigntemplatesignerEditObjectV1(pkiEzsigntemplatesignerID: Int, ezsigntemplatesignerEditObjectV1Request: EzsigntemplatesignerEditObjectV1Request, completion: @escaping (_ data: EzsigntemplatesignerEditObjectV1Response?, _ error: Error?) -> Void)
Edit an existing Ezsigntemplatesigner
// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new
import OpenAPIClient
let pkiEzsigntemplatesignerID = 987 // Int |
let ezsigntemplatesignerEditObjectV1Request = ezsigntemplatesigner-editObject-v1-Request(objEzsigntemplatesigner: ezsigntemplatesigner-RequestCompound(pkiEzsigntemplatesignerID: 123, fkiEzsigntemplateID: 123, fkiUserID: 123, fkiUsergroupID: 123, fkiEzdoctemplatedocumentID: 123, bEzsigntemplatesignerReceivecopy: false, eEzsigntemplatesignerMapping: Field-eEzsigntemplatesignerMapping(), sEzsigntemplatesignerDescription: "sEzsigntemplatesignerDescription_example")) // EzsigntemplatesignerEditObjectV1Request |
// Edit an existing Ezsigntemplatesigner
ObjectEzsigntemplatesignerAPI.ezsigntemplatesignerEditObjectV1(pkiEzsigntemplatesignerID: pkiEzsigntemplatesignerID, ezsigntemplatesignerEditObjectV1Request: ezsigntemplatesignerEditObjectV1Request) { (response, error) in
guard error == nil else {
print(error)
return
}
if (response) {
dump(response)
}
}
Name | Type | Description | Notes |
---|---|---|---|
pkiEzsigntemplatesignerID | Int | ||
ezsigntemplatesignerEditObjectV1Request | EzsigntemplatesignerEditObjectV1Request |
EzsigntemplatesignerEditObjectV1Response
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
open class func ezsigntemplatesignerGetObjectV2(pkiEzsigntemplatesignerID: Int, completion: @escaping (_ data: EzsigntemplatesignerGetObjectV2Response?, _ error: Error?) -> Void)
Retrieve an existing Ezsigntemplatesigner
// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new
import OpenAPIClient
let pkiEzsigntemplatesignerID = 987 // Int |
// Retrieve an existing Ezsigntemplatesigner
ObjectEzsigntemplatesignerAPI.ezsigntemplatesignerGetObjectV2(pkiEzsigntemplatesignerID: pkiEzsigntemplatesignerID) { (response, error) in
guard error == nil else {
print(error)
return
}
if (response) {
dump(response)
}
}
Name | Type | Description | Notes |
---|---|---|---|
pkiEzsigntemplatesignerID | Int |
EzsigntemplatesignerGetObjectV2Response
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]