Click or drag to resize

ConneXionInsertClaimPayment Method

Inserts the claim payment.

Namespace:  ConneXion
Assembly:  ConneXion (in ConneXion.dll) Version: 2020.0
Syntax
public ConneXionResult InsertClaimPayment(
	ref ClaimPayment ClaimPayment
)

Parameters

ClaimPayment
Type: ConneXionClaimPayment
ClaimPayment object to Insert

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 oConneXionClaimPay As New ConneXion.ConneXion
Dim oClaimPay As New ConneXion.ClaimPayment
Dim oResult As ConneXion.ConneXionResult

oClaimPay.TAMUserName = "EXEC"
oClaimPay.TAMPassword = "PSWD"
oClaimPay.PolicyIndex = "ABBOJO1-1"
oClaimPay.ClaimRec = "000030"
oClaimPay.Amount = 500D
oClaimPay.CheckNumber = "1234"
oClaimPay.CheckSentDate = "20200104"
oClaimPay.Coverage = "HOME"
oClaimPay.Description = "payment for vase claim"

oResult = oConneXionClaimPay.InsertClaimPayment(oClaimPay)

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