Click or drag to resize

ConneXionUpdateClaimPayment Method

Updates the claim payment.

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

Parameters

ClaimPayment
Type: ConneXionClaimPayment
ClaimPayment object to Update

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

oClaimPayment.TAMUserName = "EXEC"
oClaimPayment.TAMPassword = "PSWD"
oClaimPayment.ClaimRec = "000030"
oClaimPayment.RecordNumber = "38"
oClaimPayment.PolicyIndex = "ABBOJO1-1"

oResult = oConneXion.FindClaimPayment(oClaimPayment)

If oResult.Success Then

    oClaimPayment.TAMUserName = "EXEC"
    oClaimPayment.TAMPassword = "PSWD"
    oClaimPayment.CheckNumber = "24356"

    oResult = oConneXion.UpdateClaimPayment(oClaimPayment)

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