Skip to main content
Version: 2.0.0

Vermont

Vermont

Use this endpoint to submit Vermont's state reconciliation details along with your 1099-NEC filing. You can provide these parameters in the StateReconData object while using the Create or Update endpoints of 1099-NEC, if applicable.

Request Body

FieldTypeDescription
VTObjectVermont state recon details.
WHT434ObjectContains Vermont Recon Form WHT-434 details.
AccountNumberStringVermont state withholding ID number.
Allowed format: "WHT12345678"
PayFreqStringPayment frequency.
Allowed values

"SemiWeekly", "Monthly", "Quarterly"

IsFinalReturnBooleanWhen TRUE, identifies that the business has ceased and you would like your account closed.
OperationCeasedDtStringBusiness cease date.
IsReportingSickPayBooleanWhen TRUE, identifies that you are reporting sick pay.
AggEmployerHealthInsCoverageNumberAggregate cost of applicable employer-sponsored health insurance coverage.
Size Range: 0-999999999.99
TotalNumberOfW2FormsIntNumber of W-2 forms.
TotalWagesPerW2NumberTotal wages paid as per W-2.
Size Range: 0-999999999.99
TaxWithheldPerW2NumberTotal tax withheld as per W-2.
Size Range: 0-999999999.99
TotalNumberOf1099FormsIntNumber of 1099 forms.
Total1099PaymentsNumberTotal payments as per 1099 forms.
Size Range: 0-999999999.99
TaxWithheldPer1099NumberTotal tax withheld as per 1099 forms.
Size Range: 0-999999999.99
TotalTaxWithheldNumberTotal Vermont tax withheld.
Size Range: 0-999999999.99
Request JSON
SampleDescriptionAction
Sample 1
Provides a standalone Vermont state reconciliation payload using Form WHT-434 details only.
Sample 2
Provides a complete 1099-NEC create payload together with Vermont state reconciliation details in `StateReconData`.
Request JSON (Sample -01 (Vermont State Recon Payload))
{
"VT": {
"WHT434": {
"AccountNumber": "WHT98765101",
"PayFreq": "Monthly",
"IsFinalReturn": "True",
"OperationCeasedDt": "07/10/2025",
"IsReportingSickPay": "True",
"AggEmployerHealthInsCoverage": 210,
"TotalNumberOfW2Forms": 15,
"TotalWagesPerW2": 1000,
"TaxWithheldPerW2": 200,
"TotalNumberOf1099Forms": 16,
"Total1099Payments": 1000,
"TaxWithheldPer1099": 201,
"TotalTaxWithheld": 401
}
}
}