All URIs are relative to https://prod.api.appcluster01.ca-central-1.ezmax.com/rest
Method | HTTP request | Description |
---|---|---|
modulegroupGetAllV1 | GET /1/object/modulegroup/getAll/{eContext} | Retrieve all Modulegroups |
open class func modulegroupGetAllV1(eContext: EContext_modulegroupGetAllV1, completion: @escaping (_ data: ModulegroupGetAllV1Response?, _ error: Error?) -> Void)
Retrieve all Modulegroups
// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new
import OpenAPIClient
let eContext = "eContext_example" // String | The context of the Modulegroup
// Retrieve all Modulegroups
ObjectModulegroupAPI.modulegroupGetAllV1(eContext: eContext) { (response, error) in
guard error == nil else {
print(error)
return
}
if (response) {
dump(response)
}
}
Name | Type | Description | Notes |
---|---|---|---|
eContext | String | The context of the Modulegroup |
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]