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
| Field | Type | Description |
|---|---|---|
| FromDate | string | Enter a date from which 1099/W-2 reconcile records need to be listed in MM/DD/YYYY format. |
| ToDate | string | Enter a date till which 1099/W-2 reconcile records need to be listed in MM/DD/YYYY format. |
Response Body
| Field | Type | Description |
|---|---|---|
| TotalBusiness | number | Returns the count of total business created against the account |
| TotalSubmissions | number | Returns the total number of submissions |
| TotalRecords | number | Returns the total number of records against all the submisisons |
| FederalSummary | object | Returns summary of federal filing service type |
| Created | number | Returns the total number of returns in CREATED status |
| Transmitted | number | Returns the total number of returns in TRANSMITTED status |
| SentToAgency | number | Returns the total number of returns in SENT TO AGENCY status |
| Accepted | number | Returns the total number of returns in ACCEPTED status |
| Rejected | number | Returns the total number of returns in REJECTED status |
| AcceptedWithErrors | number | Returns the total number of returns in ACCEPTEDWITHERRORS status |
| StateSummary | Object | Returns the summary of state filing service type |
| Created | number | Returns the total number of returns in CREATED status |
| Transmitted | number | Returns the total number of returns in TRANSMITTED status |
| SentToAgency | number | Returns the total number of returns in SENT TO AGENCY status |
| Accepted | number | Returns the total number of returns in ACCEPTED status |
| Rejected | number | Returns the total number of returns in REJECTED status |
| PostalSummary | object | Returns the summary of postal mailing service type |
| Created | number | Returns the total number of records opted for postal mailing service type |
| Sent | number | Returns the total number of returns in SENT status |
| Received | number | Returns the total number of returns in RECEIVED status |
| NotCreated | number | Returns the total number of returns in NOTCREATED status |
| OnlineAccessSummary | object | Returns the summary of online access service type |
| Created | number | Returns the total number of returns in CREATED status |
| OrderReceived | number | Returns the total number of returns in ORDER_RECEIVED status |
| EmailSent | number | Returns the total number of returns in EMAIL_SENT status |
| DownloadedForm | number | Returns the total number of returns in DOWNLOADED_FORM status |
| ViewedForm | number | Returns the total number of returns in VIEWED_FORM status |
| Errors | object[] | Shows detailed error information |
| Id | string | Returns the validation error id |
| Name | string | Name of the validation error |
| Message | string | Description 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
}