kemApiV3NotificationsSendPost method

Future<Response<String>> kemApiV3NotificationsSendPost({
  1. required NotificationSendV3Body? body,
})

Send a generic notification to users based on the given tags.

This endpoint is restricted to Kohler associates who are admins.

Implementation

Future<chopper.Response<String>> kemApiV3NotificationsSendPost(
    {required NotificationSendV3Body? body}) {
  return _kemApiV3NotificationsSendPost(body: body);
}