Extend your software with TaxBandits IRS E-file API Integration

Skip to main content
Version: 1.7.1

Status

Lists the current status of Form 1099 NEC correction returns for a particular Submission ID and RecordIds.

GET Form1099NecCorrection/Status

Request Body

FieldTypeDescription
SubmissionIdGuidUnique identifier of a submission
RecordIdsGuid[]List of record Ids to get the status of Form 1099 NEC.

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 NEC correction records with Success and Error statuses
    SuccessRecordsobject[]It will show the detailed information about the success status of Form 1099 NEC 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-NEC correction return is created.
        RecipientIdGuidAn unique identifier generated by TaxBandits for a Recipient when a 1099-NEC 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
            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.
            Errorsobject[]Shows error information of state returns of Form 1099 Nec correction
                IdstringReturns the validation error Id.
                NamestringName of the validation error.
                MessagestringDescription of the validation error.
        PostalobjectReturns the status and StatusTs of postal mailing service for Form 1099 NEC 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 NEC 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 NEC 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

Form1099NecCorrection/Status?SubmissionId=9d71ae45-df5f-49f7-86f8-e88f54132fa1&RecordIds=01132f6d-ef4a-4014-817e-94a5a19bd52b

Response JSON

{
"StatusCode": 200,
"StatusName": "Ok",
"StatusMessage": "Successful API call",
"SubmissionId": "9d71ae45-df5f-49f7-86f8-e88f54132fa1",
"BusinessId": "1cc352d4-6d91-4fd5-a886-7b59b9fbe2e8",
"Form1099Type": "NECCORRECTION",
"Form1099Records": {
"SuccessRecords": [
{
"SequenceId": "001",
"PrevReportedRecordId": null,
"RecordId": "01132f6d-ef4a-4014-817e-94a5a19bd52b",
"RecipientId": "53d7818b-b819-4e51-991c-8ddbcfc1b75c",
"FederalReturn": {
"Status": "CREATED",
"StatusTs": "2021-01-11 11:00:35 +05:30",
"Info": null
},
"StateReturns": null,
"Postal": {
"Status": "CREATED",
"StatusTs": "2021-01-11 11:00:43 +05:30",
"Info": null
},
"OnlineAccess": {
"Status": "NA",
"Email": null,
"Info": "This Service will be available soon"
}
}
],
"ErrorRecords": null
},
"Errors": null
}