Click or drag to resize

ConneXionDeleteClaimant Method

Used to Delete the claimant.

Namespace:  ConneXion
Assembly:  ConneXion (in ConneXion.dll) Version: 2020.0
Syntax
public ConneXionResult DeleteClaimant(
	Claimant Claimant
)

Parameters

Claimant
Type: ConneXionClaimant
Claimant object to Delete

Return Value

Type: ConneXionResult
ConneXionResult.
Remarks

Required Fields

  • TAMUserName
  • TAMPassword
  • TAMCentralAgency - only if agency is on AppliedOnline
  • LicenseKey - only if agency is an Agency of Vendor
  • PolicyIndex
  • ClaimRec
  • RecordNumber
Examples
VB
Dim oConneXionClaimant As New ConneXion.ConneXion
Dim oClaimant As New ConneXion.Claimant
Dim oResult As ConneXion.ConneXionResult

oClaimant.TAMUserName = "EXEC"
oClaimant.TAMPassword = "PSWD"
oClaimant.PolicyIndex = "ABBOJO1-1"
oClaimant.ClaimRec = "000030"
oClaimant.RecordNumber = "20"

oResult = oConneXionClaimant.DeleteClaimant(oClaimant)

If oResult.Success = True Then
    MessageBox.Show("Delete Claimant is Successful")
Else
    txtResult.Text = "Number: " & oResult.Number & vbCrLf & "Desc: " & oResult.Description & vbCrLf & "TAMErrorNumber: " &
        oResult.TAMErrorNumber & vbCrLf & "TAMErroDesc: " & oResult.TAMDescription
End If
See Also