All URIs are relative to https://prod.api.appcluster01.ca-central-1.ezmax.com/rest
Method | HTTP request | Description |
---|---|---|
notificationsectionGetNotificationtestsV1 | GET /1/object/notificationsection/{pkiNotificationsectionID}/getNotificationtests | Retrieve an existing Notificationsection's Notificationtests |
open class func notificationsectionGetNotificationtestsV1(pkiNotificationsectionID: Int, bShowHidden: Bool, completion: @escaping (_ data: NotificationsectionGetNotificationtestsV1Response?, _ error: Error?) -> Void)
Retrieve an existing Notificationsection's Notificationtests
// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new
import OpenAPIClient
let pkiNotificationsectionID = 987 // Int |
let bShowHidden = true // Bool | Whether or not to return the hidden Notificationtests
// Retrieve an existing Notificationsection's Notificationtests
ObjectNotificationsectionAPI.notificationsectionGetNotificationtestsV1(pkiNotificationsectionID: pkiNotificationsectionID, bShowHidden: bShowHidden) { (response, error) in
guard error == nil else {
print(error)
return
}
if (response) {
dump(response)
}
}
Name | Type | Description | Notes |
---|---|---|---|
pkiNotificationsectionID | Int | ||
bShowHidden | Bool | Whether or not to return the hidden Notificationtests |
NotificationsectionGetNotificationtestsV1Response
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]