kemproApiV2OrgUsersUserIdResendInvitePost method

Future<Response> kemproApiV2OrgUsersUserIdResendInvitePost({
  1. required int? userId,
})

Resend a marketing cloud invitation to a user, to allow them to login and access the Energy Management platform.

This will also reset the user's password. Any prior passwords in previous invitation emails will no longer work. If the user has already logged in and onboarded previously, this will still reset their password and resend a new invitation email. This method will fail if the user does not exist within the database or Okta. It will also fail if the caller and the given user are from different dealer orgs. @param userId ID of the user within the dealer service database

Implementation

Future<chopper.Response> kemproApiV2OrgUsersUserIdResendInvitePost(
    {required int? userId}) {
  return _kemproApiV2OrgUsersUserIdResendInvitePost(userId: userId);
}