kemApiV3DealerDevicesBulkPost method

Future<Response> kemApiV3DealerDevicesBulkPost({
  1. required DeviceBulkV3Body? 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. Devices added via this method are will be marked as unapproved and will need approval of a dealer admin via /approve to appear in the dealer org's fleet list.

Implementation

Future<chopper.Response> kemApiV3DealerDevicesBulkPost(
    {required DeviceBulkV3Body? body}) {
  return _kemApiV3DealerDevicesBulkPost(body: body);
}