listIoTsWithHttpInfo method

Future<Response> listIoTsWithHttpInfo()

List all IoTs of an OEM

Returns the iot list for the builder identified by the orgid header, and inspect reponse elements for tags "location" "protocol" if some builder have a different application a further header xAuthApp can be added in keycloak and bound to to the OEM like the orgid

Note: This method returns the HTTP Response.

Implementation

Future<Response> listIoTsWithHttpInfo() async {
  // ignore: prefer_const_declarations
  final path = r'/lbcoreapi/iots';

  // ignore: prefer_final_locals
  Object? postBody;

  final queryParams = <QueryParam>[];
  final headerParams = <String, String>{};
  final formParams = <String, String>{};

  const contentTypes = <String>[];

  return apiClient.invokeAPI(
    path,
    'GET',
    queryParams,
    postBody,
    headerParams,
    formParams,
    contentTypes.isEmpty ? null : contentTypes.first,
  );
}