Click or drag to resize

ConneXionFindInstallmentPlan Method

Finds the installment plan.

Namespace:  ConneXion
Assembly:  ConneXion (in ConneXion.dll) Version: 2020.0
Syntax
public ConneXionResult FindInstallmentPlan(
	ref InstallmentPlan InstallmentPlan
)

Parameters

InstallmentPlan
Type: ConneXionInstallmentPlan
The InstallmentPlan 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
  • PlanNumber
Examples
VB
Dim oConneXion As New ConneXion.ConneXion
Dim oInstallmentPlan As New ConneXion.InstallmentPlan
Dim oInstallment As New ConneXion.Installment
Dim oResult As ConneXion.ConneXionResult
oInstallmentPlan.TAMUserName = "EXEC"
oInstallmentPlan.TAMPassword = "PSWD"
oInstallmentPlan.TAMCentralAgency = "DEMOAG1"
oInstallmentPlan.LicenseKey = "1234567  1"
oInstallmentPlan.PolicyIndex = "ABBOJO1-2"
oInstallmentPlan.PlanNumber = 153
oResult = oConneXion.FindInstallmentPlan(oInstallmentPlan)
If oResult.Success = True Then
  MessageBox.Show("FindInstallmentPlan was Successful.  " & oResult.Description & ".")
Else
  txtResult.Text = "Number: " & oResult.Number & vbCrLf & "Description: " & oResult.Description & vbCrLf & "TAMErrorNumber: " & oResult.TAMErrorNumber & vbCrLf & "TAMErroDesc: " & oResult.TAMDescription
End If
See Also