Skip to main content
Version: 2.0.0

Idaho

Idaho

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

Request Body

FieldTypeDescription
IDObjectIdaho state recon details.
Form967ObjectContains Idaho Recon Form 967 details.
AccountNumberstringIdaho state withholding ID number.
Allowed values: "999999999"
TotalWagesW2NumberTotal wages per W-2.
Size Range: 0-999999999.99
TotalTaxWithheldW2NumberTotal tax withheld per W-2.
Size Range: 0-999999999.99
NumberOfW2FormsIntNumber of W-2 forms.
TotalTaxWithheld1099NumberTotal tax withheld per 1099.
Size Range: 0-999999999.99
NumberOf1099FormsIntNumber of 1099 forms.
TotalNumberOf1099W2IntTotal number of 1099 and W-2 forms.
TotalTaxWithheldNumberTotal tax withheld.
Size Range: 0-999999999.99
WithheldTaxPaidNumberWithholding tax paid amount.
Size Range: 0-999999999.99
BalanceDueNumberBalance Due.
Size Range: 0-999999999.99
OverpaymentNumberOverpayment.
Size Range: 0-999999999.99
PenaltyOnBalanceDueNumberPenalty on Balance Due.
Size Range: 0-999999999.99
InterestOnBalanceDueNumberInterest on Balance Due.
Size Range: 0-999999999.99
BalanceDuePenIntNumberSum of Balance Due, Penalty and Interest.
Size Range: 0-999999999.99
LateFilingPenaltyNumberLate filing penalty.
Size Range: 0-999999999.99
TotalBalanceDueNumberTotal balance due.
Size Range: 0-999999999.99
TotalOverPaymentNumberTotal Overpayment.
Size Range: 0-999999999.99
Is1099CFSFBooleanIs 1099 forms filed via CF/SF.
FilingCyclestringFiling cycle.

Allowed values

"Annual", "Quarterly", "Monthly", "SemiMonthly"

Request JSON
SampleDescriptionAction
Sample 1
Provides a standalone Idaho state reconciliation payload using Form 967 details only.
Sample 2
Provides a complete Form W-2 create payload together with Idaho state reconciliation details in `StateReconData`.
Request JSON (Sample -01 (Idaho State Recon Payload))
{
"ID": {
"Form967": {
"AccountNumber": "999999999",
"TotalWagesW2": 60001111,
"TotalTaxWithheldW2": 200,
"NumberOfW2Forms": 20,
"TotalTaxWithheld1099": 100,
"NumberOf1099Forms": 20,
"TotalNumberOf1099W2": 40,
"TotalTaxWithheld": 600,
"WithheldTaxPaid": 500,
"BalanceDue": 100,
"Overpayment": 0,
"PenaltyOnBalanceDue": 0,
"InterestOnBalanceDue": 0,
"BalanceDuePenInt": 100,
"LateFilingPenalty": 200,
"TotalBalanceDue": 300,
"TotalOverPayment": 0,
"Is1099CFSF": true,
"FilingCycle": "Annual"
}
}
}