Skip to main content
Version: 1.7.3

Status

Status

GET Form1099DACorrection/Status   

Request Params

FieldTypeDescription
SubmissionIdGuidUnique identifier of a submission
RecordIdGuidUnique identifier of the return.

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
BusinessIdGuidUnique identifier of a Business.
Form1099TypestringDenotes the type of 1099 form.
Form1099RecordsobjectPulls Form 1099 DA correction records with Success and Error statuses
SuccessRecordsobject[]It will show the detailed information about the success status of Form 1099 DA correction Records
SequenceIdstringAn 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.
PrevReportedRecordIdGuidReturns the PrevReportedRecordId given in the Request.
RecordIdGuidAn unique identifier generated by TaxBandits when a 1099-DA correction return is created.
RecipientIdGuidAn unique identifier generated by TaxBandits for a Recipient when a 1099-DA correction return is created. You can use this id for your future reference to Update.
FederalReturnobjectReturns the record status and StatusTs of federal return.
StatusstringReturns the record status.
StatusTsstringReturns date and time of return created.
InfostringReturns information about the Federal Filing service.
StateReturnsobject[]Returns collection of state returns information
PostalobjectReturns the status and StatusTs of postal mailing service for Form 1099 DA correction.
StatusstringReturns the status of postal order.
StatusTsstringReturns the date and time of the postal order created.
InfostringReturns the information about Postal mailing service.
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 DA correction 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 DA correction Records.
SequenceIdstringAn 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

Request JSON

Get status with only the SubmissionID

Form1099DACorrection/Status?SubmissionId=573087a5-ac58-49fc-a17c-93dab9f7aa69

Response JSON

Success Response - This is a sample response for successful API requests.

{
"StatusCode": 200,
"StatusName": "Ok",
"StatusMessage": "Successful API call",
"SubmissionId": "d810cc56-a871-485e-b5ce-6ba4bae78db0",
"BusinessId": "7ae96ebe-327b-4e51-80fc-6f7601b71f46",
"PayerRef": "Snow14857",
"Form1099Type": "DACORRECTION",
"Form1099Records": {
"SuccessRecords": [
{
"SequenceId": "01",
"PrevReportedRecordId": null,
"RecordId": "7263a0a6-95e8-41a5-b490-b2cbca20f52f",
"RecipientId": "ff55b6a4-a459-4554-8801-b007c0a23f29",
"FederalReturn": {
"Status": "TRANSMITTED",
"StatusTs": "2026-02-09 05:52:39 -05:00",
"Info": null,
"Errors": null
},
"Postal": {
"Status": "RECEIVED",
"StatusTs": "2026-02-09 05:52:39 -05:00",
"Info": null
},
"OnlineAccess": {
"Status": "EMAIL_SENT",
"Email": "james@sample.com",
"Info": null
}
}
],
"ErrorRecords": null
},
"Errors": null
}