All URIs are relative to https://prod.api.appcluster01.ca-central-1.ezmax.com/rest
| Method | HTTP request | Description |
|---|---|---|
| brokertypeGetAutocompleteV2 | GET /2/object/brokertype/getAutocomplete/{sSelector} | Retrieve Brokertypes and IDs |
open class func brokertypeGetAutocompleteV2(sSelector: SSelector_brokertypeGetAutocompleteV2, eFilterActive: EFilterActive_brokertypeGetAutocompleteV2? = nil, sQuery: String? = nil, acceptLanguage: HeaderAcceptLanguage? = nil, completion: @escaping (_ data: BrokertypeGetAutocompleteV2Response?, _ error: Error?) -> Void)Retrieve Brokertypes and IDs
Get the list of Brokertype to be used in a dropdown or autocomplete control.
// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new
import OpenAPIClient
let sSelector = "sSelector_example" // String | The type of Brokertypes to return
let eFilterActive = "eFilterActive_example" // String | Specify which results we want to display. (optional) (default to .active)
let sQuery = "sQuery_example" // String | Allow to filter the returned results (optional)
let acceptLanguage = Header-Accept-Language() // HeaderAcceptLanguage | (optional)
// Retrieve Brokertypes and IDs
ObjectBrokertypeAPI.brokertypeGetAutocompleteV2(sSelector: sSelector, eFilterActive: eFilterActive, sQuery: sQuery, acceptLanguage: acceptLanguage) { (response, error) in
guard error == nil else {
print(error)
return
}
if (response) {
dump(response)
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| sSelector | String | The type of Brokertypes to return | |
| eFilterActive | String | Specify which results we want to display. | [optional] [default to .active] |
| sQuery | String | Allow to filter the returned results | [optional] |
| acceptLanguage | HeaderAcceptLanguage | [optional] |
BrokertypeGetAutocompleteV2Response
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]