kemApiV3DealerDevicesPost method

Future<Response> kemApiV3DealerDevicesPost({
  1. required DealerDeviceAdditionV3Body? body,
})

Add a device to the fleet of the dealer organization of the currently logged-in user.

This endpoint will associate an existing device with the dealer's org as a whole. It will store modern device metadata in the new database. It will also activate the device automatically, following the existing OnCue activation steps. Finally, it will send an email to the homeowner and dealer once successful. Devices added via this method are automatically approved and will immediately appear in the dealer's fleet.

Implementation

Future<chopper.Response> kemApiV3DealerDevicesPost(
    {required DealerDeviceAdditionV3Body? body}) {
  return _kemApiV3DealerDevicesPost(body: body);
}