Skip to main content
Version: 1.7.3

Validate

Executes business and data validation checks for the 1099-S returns already created in API. Use the Submission ID and Record IDs of the return to validate.

GET Form1099S/Validate 
Run in Postman

Request Params

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

Request Params

"Form1099S/Validate?SubmissionId=94419089-f9fe-4390-b622-ee06f7682754&RecordIds=aabf8859-c07a-4ea1-bdc5-0088cf037f03"

Response Body

FieldTypeDescription
StatusCodenumberReturns the HTTP status codes like 200,300 etc.
StatusNamestringName of the status code
StatusMessagestringDetailed status message
SubmissionIdGuidUnique identifier of a submission
Form1099RecordsobjectPulls the Form 1099-S 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 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 to be given and Status of online access.
            StatusstringReturns status of online access for Form 1099 MISC return.
            EmailstringEmail address for whom the online access 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.
        RecordIdGuidUnique identifier of a record
        Errorsobject[]Shows detailed error information
            IdstringReturns the validation error id
            NamestringName of the validation error
            MessagestringDescription of the validation error
Errorsobject[]Shows detailed error information
    IdstringReturns the validation error id
    NamestringName of the validation error
    MessagestringDescription of the validation error

Response JSON

{
"StatusCode": 200,
"StatusName": "Ok",
"StatusMessage": "Successful API call",
"SubmissionId": "94419089-f9fe-4390-b622-ee06f7682754",
"Form1099Records": {
"SuccessRecords": [
{
"SequenceId": "001",
"RecordId": "aabf8859-c07a-4ea1-bdc5-0088cf037f03",
"Status": "CREATED",
"StatusTs": "2021-11-24 09:43:28 -05:00",
"StateReturns": null,
"OnlineAccess": null
}
],
"ErrorRecords": null
},
"Errors": null
}