<PackageReference Include="Relativity.Server.Services.Interfaces.SDK" Version="5000.0.2" />

UserInviteError

public class UserInviteError
Invitation email error for a user and the status code of the error.
public Exception Exception { get; set; }

Exception thrown when attempting to send the user an invitation email.

public HttpStatusCode StatusCode { get; set; }

Status code for the error: 404 if the user doesn't exist or isn't viewable by the caller, 403 if the caller doesn't have the necessary permissions to invite the user.

public int UserId { get; set; }

ID of the user.

public UserInviteError()