kemproApiV2OrgDevicesBulkPost method

Future<Response> kemproApiV2OrgDevicesBulkPost({
  1. required List<int>? body,
})

Add devices to a dealer's organization in bulk.

This endpoint will associate a list of existing devices with the dealer's org as a whole. Unlike the "Add device" endpoint, there will be no further actions such as emails.

Implementation

Future<chopper.Response> kemproApiV2OrgDevicesBulkPost(
    {required List<int>? body}) {
  return _kemproApiV2OrgDevicesBulkPost(body: body);
}