Skip to content

Latest commit

 

History

History
61 lines (40 loc) · 2.47 KB

File metadata and controls

61 lines (40 loc) · 2.47 KB

ObjectEzmaxcustomeruserAPI

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

Method HTTP request Description
ezmaxcustomeruserPatchObjectV1 PATCH /1/object/ezmaxcustomeruser/{pkiEzmaxcustomeruserID} Patch an existing Ezmaxcustomeruser

ezmaxcustomeruserPatchObjectV1

    open class func ezmaxcustomeruserPatchObjectV1(pkiEzmaxcustomeruserID: Int, ezmaxcustomeruserPatchObjectV1Request: EzmaxcustomeruserPatchObjectV1Request, completion: @escaping (_ data: EzmaxcustomeruserPatchObjectV1Response?, _ error: Error?) -> Void)

Patch an existing Ezmaxcustomeruser

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 pkiEzmaxcustomeruserID = 987 // Int | The unique ID of the Ezmaxcustomeruser
let ezmaxcustomeruserPatchObjectV1Request = ezmaxcustomeruser-patchObject-v1-Request(objEzmaxcustomeruser: ezmaxcustomeruser-RequestPatch(objEzmaxcustomeruserNote: Multilingual-EzmaxcustomeruserNote(tEzmaxcustomeruserNote1: "tEzmaxcustomeruserNote1_example", tEzmaxcustomeruserNote2: "tEzmaxcustomeruserNote2_example"))) // EzmaxcustomeruserPatchObjectV1Request | 

// Patch an existing Ezmaxcustomeruser
ObjectEzmaxcustomeruserAPI.ezmaxcustomeruserPatchObjectV1(pkiEzmaxcustomeruserID: pkiEzmaxcustomeruserID, ezmaxcustomeruserPatchObjectV1Request: ezmaxcustomeruserPatchObjectV1Request) { (response, error) in
    guard error == nil else {
        print(error)
        return
    }

    if (response) {
        dump(response)
    }
}

Parameters

Name Type Description Notes
pkiEzmaxcustomeruserID Int The unique ID of the Ezmaxcustomeruser
ezmaxcustomeruserPatchObjectV1Request EzmaxcustomeruserPatchObjectV1Request

Return type

EzmaxcustomeruserPatchObjectV1Response

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]