Skip to content

Latest commit

 

History

History
57 lines (38 loc) · 1.64 KB

ObjectModulegroupAPI.md

File metadata and controls

57 lines (38 loc) · 1.64 KB

ObjectModulegroupAPI

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

modulegroupGetAllV1

    open class func modulegroupGetAllV1(eContext: EContext_modulegroupGetAllV1, completion: @escaping (_ data: ModulegroupGetAllV1Response?, _ error: Error?) -> Void)

Retrieve all Modulegroups

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 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)
    }
}

Parameters

Name Type Description Notes
eContext String The context of the Modulegroup

Return type

ModulegroupGetAllV1Response

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]