Skip to content

Latest commit

 

History

History
112 lines (74 loc) · 4.73 KB

ObjectSystemconfigurationAPI.md

File metadata and controls

112 lines (74 loc) · 4.73 KB

ObjectSystemconfigurationAPI

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

Method HTTP request Description
systemconfigurationEditObjectV1 PUT /1/object/systemconfiguration/{pkiSystemconfigurationID} Edit an existing Systemconfiguration
systemconfigurationGetObjectV2 GET /2/object/systemconfiguration/{pkiSystemconfigurationID} Retrieve an existing Systemconfiguration

systemconfigurationEditObjectV1

    open class func systemconfigurationEditObjectV1(pkiSystemconfigurationID: Int, systemconfigurationEditObjectV1Request: SystemconfigurationEditObjectV1Request, completion: @escaping (_ data: SystemconfigurationEditObjectV1Response?, _ error: Error?) -> Void)

Edit an existing Systemconfiguration

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 pkiSystemconfigurationID = 987 // Int | The unique ID of the Systemconfiguration
let systemconfigurationEditObjectV1Request = systemconfiguration-editObject-v1-Request(objSystemconfiguration: systemconfiguration-RequestCompound(pkiSystemconfigurationID: 123, eSystemconfigurationNewexternaluseraction: Field-eSystemconfigurationNewexternaluseraction(), eSystemconfigurationLanguage1: Field-eSystemconfigurationLanguage1(), eSystemconfigurationLanguage2: Field-eSystemconfigurationLanguage2(), eSystemconfigurationEzsign: Field-eSystemconfigurationEzsign(), eSystemconfigurationEzsignofficeplan: Field-eSystemconfigurationEzsignofficeplan(), bSystemconfigurationEzsignpaidbyoffice: true, bSystemconfigurationEzsignpersonnal: true, bSystemconfigurationSspr: true, dtSystemconfigurationReadonlyexpirationstart: "dtSystemconfigurationReadonlyexpirationstart_example", dtSystemconfigurationReadonlyexpirationend: "dtSystemconfigurationReadonlyexpirationend_example")) // SystemconfigurationEditObjectV1Request | 

// Edit an existing Systemconfiguration
ObjectSystemconfigurationAPI.systemconfigurationEditObjectV1(pkiSystemconfigurationID: pkiSystemconfigurationID, systemconfigurationEditObjectV1Request: systemconfigurationEditObjectV1Request) { (response, error) in
    guard error == nil else {
        print(error)
        return
    }

    if (response) {
        dump(response)
    }
}

Parameters

Name Type Description Notes
pkiSystemconfigurationID Int The unique ID of the Systemconfiguration
systemconfigurationEditObjectV1Request SystemconfigurationEditObjectV1Request

Return type

SystemconfigurationEditObjectV1Response

Authorization

Authorization

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

systemconfigurationGetObjectV2

    open class func systemconfigurationGetObjectV2(pkiSystemconfigurationID: Int, completion: @escaping (_ data: SystemconfigurationGetObjectV2Response?, _ error: Error?) -> Void)

Retrieve an existing Systemconfiguration

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 pkiSystemconfigurationID = 987 // Int | The unique ID of the Systemconfiguration

// Retrieve an existing Systemconfiguration
ObjectSystemconfigurationAPI.systemconfigurationGetObjectV2(pkiSystemconfigurationID: pkiSystemconfigurationID) { (response, error) in
    guard error == nil else {
        print(error)
        return
    }

    if (response) {
        dump(response)
    }
}

Parameters

Name Type Description Notes
pkiSystemconfigurationID Int The unique ID of the Systemconfiguration

Return type

SystemconfigurationGetObjectV2Response

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]