Skip to main content
Version: 1.7.3

1099/W-2 Reconciliation Report for Account

1099/W-2 Reconciliation Report for Account

GET Reports/Form1099W2BusinessReport 

Use this endpoint to retrieve a comprehensive summary of 1099/W-2 filings across all payers (businesses) in your account.

Provide the date range for the period you wish to generate the report, and the response will include a complete summary of 1099/W-2 filings for your entire account.

Request Params

FieldTypeDescription
FromDatestringEnter a date from which 1099/W-2 reconcile records need to be listed in MM/DD/YYYY format.
ToDatestringEnter a date till which 1099/W-2 reconcile records need to be listed in MM/DD/YYYY format.

Response Body

FieldTypeDescription
TotalBusinessnumberReturns the count of total business created against the account
TotalSubmissionsnumberReturns the total number of submissions
TotalRecordsnumberReturns the total number of records against all the submisisons
FederalSummaryobjectReturns summary of federal filing service type
    CreatednumberReturns the total number of returns in CREATED status
    TransmittednumberReturns the total number of returns in TRANSMITTED status
    SentToAgencynumberReturns the total number of returns in SENT TO AGENCY status
    AcceptednumberReturns the total number of returns in ACCEPTED status
    RejectednumberReturns the total number of returns in REJECTED status
    AcceptedWithErrorsnumberReturns the total number of returns in ACCEPTEDWITHERRORS status
StateSummaryObjectReturns the summary of state filing service type
    CreatednumberReturns the total number of returns in CREATED status
    TransmittednumberReturns the total number of returns in TRANSMITTED status
    SentToAgencynumberReturns the total number of returns in SENT TO AGENCY status
    AcceptednumberReturns the total number of returns in ACCEPTED status
    RejectednumberReturns the total number of returns in REJECTED status
PostalSummaryobjectReturns the summary of postal mailing service type
    CreatednumberReturns the total number of records opted for postal mailing service type
    SentnumberReturns the total number of returns in SENT status
    ReceivednumberReturns the total number of returns in RECEIVED status
    NotCreatednumberReturns the total number of returns in NOTCREATED status
OnlineAccessSummaryobjectReturns the summary of online access service type
    CreatednumberReturns the total number of returns in CREATED status
    OrderReceivednumberReturns the total number of returns in ORDER_RECEIVED status
    EmailSentnumberReturns the total number of returns in EMAIL_SENT status
    DownloadedFormnumberReturns the total number of returns in DOWNLOADED_FORM status
    ViewedFormnumberReturns the total number of returns in VIEWED_FORM status
Errorsobject[]Shows detailed error information
    IdstringReturns the validation error id
    NamestringName of the validation error
    MessagestringDescription of the validation error

Request Params

"Reports/Form1099W2Summary?FromDate=03/20/2025&ToDate=03/20/2025"

Response JSON

{
"TotalBusiness": 5,
"TotalSubmissions": 14,
"TotalRecords": 14,
"ReconcileSummary": {
"FederalSummary": {
"Created": 0,
"Transmitted": 10,
"SentToAgency": 0,
"Accepted": 0,
"Rejected": 4,
"AcceptedWithErrors": 0
},
"StateSummary": {
"Created": 0,
"Transmitted": 0,
"SentToAgency": 8,
"Accepted": 0,
"Rejected": 0
},
"PostalSummary": {
"Created": 0,
"Received": 11,
"Sent": 0
},
"OnlineAccessSummary": {
"Created": 0,
"OrderReceived": 0,
"EmailSent": 7,
"DownloadedForm": 0,
"ViewedForm": 0
}
},
"Errors": null
}