Skip to content

Latest commit

 

History

History
59 lines (38 loc) · 1.79 KB

ObjectNotificationtestAPI.md

File metadata and controls

59 lines (38 loc) · 1.79 KB

ObjectNotificationtestAPI

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

Method HTTP request Description
notificationtestGetElementsV1 GET /1/object/notificationtest/{pkiNotificationtestID}/getElements Retrieve an existing Notificationtest's Elements

notificationtestGetElementsV1

    open class func notificationtestGetElementsV1(pkiNotificationtestID: Int, completion: @escaping (_ data: NotificationtestGetElementsV1Response?, _ error: Error?) -> Void)

Retrieve an existing Notificationtest's Elements

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 pkiNotificationtestID = 987 // Int | 

// Retrieve an existing Notificationtest's Elements
ObjectNotificationtestAPI.notificationtestGetElementsV1(pkiNotificationtestID: pkiNotificationtestID) { (response, error) in
    guard error == nil else {
        print(error)
        return
    }

    if (response) {
        dump(response)
    }
}

Parameters

Name Type Description Notes
pkiNotificationtestID Int

Return type

NotificationtestGetElementsV1Response

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]