All URIs are relative to https://prod.api.appcluster01.ca-central-1.ezmax.com/rest
Method | HTTP request | Description |
---|---|---|
versionhistoryGetObjectV2 | GET /2/object/versionhistory/{pkiVersionhistoryID} | Retrieve an existing Versionhistory |
open class func versionhistoryGetObjectV2(pkiVersionhistoryID: Int, completion: @escaping (_ data: VersionhistoryGetObjectV2Response?, _ error: Error?) -> Void)
Retrieve an existing Versionhistory
// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new
import OpenAPIClient
let pkiVersionhistoryID = 987 // Int |
// Retrieve an existing Versionhistory
ObjectVersionhistoryAPI.versionhistoryGetObjectV2(pkiVersionhistoryID: pkiVersionhistoryID) { (response, error) in
guard error == nil else {
print(error)
return
}
if (response) {
dump(response)
}
}
Name | Type | Description | Notes |
---|---|---|---|
pkiVersionhistoryID | Int |
VersionhistoryGetObjectV2Response
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]