Skip to main content
Version: 1.7.3

Validate

Validate

This endpoint can be used to perform business and data validation checks on the 1099-NEC returns already created through the API. To validate, provide the corresponding SubmissionId and RecordIds of the specific return you want to verify.

GET Form1099NEC/Validate  

Request Params

FieldTypeDescription
SubmissionIdGuidA unique identifier of a submission
RecordIdsGuid[]A unique identifier generated by TaxBandits when a 1099-NEC return is created. Mention the 1099-NEC return's Record ID that you want to Validate.

Response Body

FieldTypeDescription
StatusCodenumberReturns the HTTP status codes like 200,300 etc.
StatusNamestringName of the status code
StatusMessagestringDetailed status message
SubmissionIdGuidA unique identifier of a submission
Form1099RecordsobjectPulls the Form 1099-NEC records with Success and Error statuses
    SuccessRecordsobject[]It will show the detailed information about the success status of Form 1099 Records
        SequenceIdstringA unique reference ID for the submission that can be used to identify a particular record. The Sequence ID will be returned in the Response for your reference.
        RecordIdGuidRecord ID of the returns that were successfully validated.
        StatusstringReturns the status of the records.
        StatusTsstringDate and time of return created.
        StateReturnsobject[]Returns a collection of state returns information
            StateCdstringReturns the state code of the state for which the return is filed.
            StatusstringReturns the record status of the state return.
            StatusTsstringDate and time of the return created.
            InfostringReturns the information about the state for which we are not supporting state filing.
        OnlineAccessobjectReturns the Email address for whom the online access is to be given and the status of online access.
            StatusstringReturns the status of online access for the Form 1099 NEC return.
            EmailstringEmail address for whom the online access is to be given.
            InfostringInformation about the online access service.
    ErrorRecordsobject[]It will show the detailed information about the error status of Form 1099 Records.
        SequenceIdstringA unique reference ID for the submission that can be used to identify a particular record. The Sequence ID will be returned in the Response for your reference.
        RecordIdGuidA unique identifier of a record
        Errorsobject[]Shows detailed error information
            IdstringReturns the validation error id
            NamestringName of the validation error
            MessagestringDescription of the validation error
Request Params
SampleDescriptionAction
Sample 1
Provide the SubmissionId and RecordId to validate the 1099-NEC return.
Sample 1
"Form1099NEC/Validate?SubmissionId=9d71ae45-df5f-49f7-86f8-e88f54132fa1&RecordIds=01132f6d-ef4a-4014-817e-94a5a19bd52b,eb39714e-f653-4c4d-a53c-07f24f9a9dj5"
Response Json
ResponseDescriptionAction
200
Success Response - This is a sample response for successful API requests.
Response: 200
{
"StatusCode": 200,
"StatusName": "Ok",
"StatusMessage": "Successful API call",
"SubmissionId": "9d71ae45-df5f-49f7-86f8-e88f54132fa1",
"Form1099Records": {
"SuccessRecords": [
{
"SequenceId": "1",
"RecordId": "15c3caa6-8402-4548-8713-4fcdd2f7d42d",
"Status": "CREATED",
"StatusTs": "2025-08-05 06:26:16 -04:00",
"StateReturns": null,
"OnlineAccess": null
},
{
"SequenceId": "2",
"RecordId": "eb39714e-f653-4c4d-a53c-07f24f9a9dj5",
"Status": "CREATED",
"StatusTs": "2025-08-05 06:26:16 -04:00",
"StateReturns": null,
"OnlineAccess": null
}
],
"ErrorRecords": null
},
"Errors": null
}