Click or drag to resize

ConneXionFindClaimantsForCustomer Method

Used to Find the claimants for customer.

Namespace:  ConneXion
Assembly:  ConneXion (in ConneXion.dll) Version: 2020.0
Syntax
public ConneXionResult FindClaimantsForCustomer(
	Claimant Claimant,
	ref Claimant[] Claimants
)

Parameters

Claimant
Type: ConneXionClaimant
Claimant object to Find
Claimants
Type: ConneXionClaimant
List of claimants.

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
  • ClaimRec
  • PolicyIndex
Examples
VB
Dim oConneXionClaimant As New ConneXion.ConneXion
Dim oClaimant As New ConneXion.Claimant
Dim oClaimants() As ConneXion.Claimant
Dim oResult As ConneXion.ConneXionResult

oClaimant.TAMUserName = "EXEC"
oClaimant.TAMPassword = "PSWD"
oClaimant.PolicyIndex = "ABBOJO1-4"
oClaimant.ClaimRec = "000028"

oResult = oConneXionClaimant.FindClaimantsForCustomer(oClaimant, oClaimants)

If oResult.Success Then
    txtResult.Text = oResult.Description
    dgrdResult.DataSource = oClaimants
Else
    txtResult.Text = "Number: " & oResult.Number & vbCrLf & "Desc: " & oResult.Description & vbCrLf & "TAMErrorNumber: " &
     oResult.TAMErrorNumber & vbCrLf & "TAMErroDesc: " & oResult.TAMDescription
End If
See Also