Click or drag to resize

ConneXionFindClaim Method

Used to Find a claim.

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

Parameters

Claim
Type: ConneXionClaim
Claim object to Find

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.FindClaim(oClaim)

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