Click or drag to resize

ConneXionDeleteClaim Method

Used to Delete a claim.

Namespace:  ConneXion
Assembly:  ConneXion (in ConneXion.dll) Version: 2020.0
Syntax
public ConneXionResult DeleteClaim(
	Claim Claim
)

Parameters

Claim
Type: ConneXionClaim
Claim 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
Examples
VB
Dim oConneXion As New ConneXion.ConneXion
Dim oClaim As New ConneXion.Claim
Dim oResult As ConneXion.ConneXionResult

oClaim.TAMUsername = "EXEC"
oClaim.TAMPassword = "PSWD"
oClaim.PolicyIndex = "ABBOJO1-4"
oClaim.ClaimRec = "000033"

oResult = oConneXion.DeleteClaim(oClaim)

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