Skip to main content
Version: 1.7.3

Status

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

Federal Return Statuses:

  • Created: Form 1099 has been created and not yet transmitted by the user.
  • Transmitted: Form 1099 has been transmitted by the user.
  • Order Received: Form 1099 order is received and waiting in our efile queue.
  • Under Process: Our efile system is processing the Form 1099 which will be sent to the IRS soon.
  • Sent to Agency: Form 1099 has been sent to the SSA and we are waiting for the result from IRS.
  • Accepted: Form 1099 is accepted by the IRS.
  • Rejected: Form 1099 is rejected by the IRS due to some errors. Please correct the errors and retransmit them.

Postal Mailing Statuses:

  • Not Created: Postal Mailing is not opted for the return. IsPostalMailing in the submission manifest must be set as TRUE to enable postal mailing. Postal Mailing cannot be created for recipients with Foreign addresses.
  • Created: Postal Mailing service is opted for the return and it will be sent as soon as the form is transmitted.
  • Order Received: Postal Mailing order has been received and the mails will be sent out soon.
  • Order Sent: Postal Mailing order has been sent and the recipient will receive the copy soon.

Online Access Statuses:

  • Not Created: Online Access service is not opted for the return. IsOnlineAccess in the submission manifest must be set as TRUE to enable Online Access. Email Address is required to create Online Access.
  • Created: Online Access service is opted for the return and the email with a secure link to download their forms will be sent to the recipients as soon as the form is transmitted.
  • Order Received: Online Access order has been received and the email will be sent to the recipient soon.
  • Email Sent: Online Access email with a secure link to download the form has been sent to the recipient and the recipient is yet to view the form.
  • Viewed Form: Recipient has successfully viewed the form.
  • Downloaded Form: Recipient has successfully viewed and downloaded the form.
GET Form1099MiscCorrection/Status 
Run in Postman

Request Params

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

Request Params

Form1099MiscCorrection/status?SubmissionId=12d5f304-6bbc-4438-a9bc-c0631debc8fc&RecordId=71844168-d0ef-4b75-8a93-0a0adf17d1a5

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 Misc correction records with Success and Error statuses
    SuccessRecordsobject[]It will show the detailed information about the success status of Form 1099 Misc 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-Misc correction return is created.
        RecipientIdGuidAn unique identifier generated by TaxBandits for a Recipient when a 1099-Misc correction return is created.
        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 Misc 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 Misc 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 Misc 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 Misc 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

Response JSON

{
"StatusCode": 200,
"StatusName": "Ok",
"StatusMessage": "Successful API call",
"SubmissionId": "12d5f304-6bbc-4438-a9bc-c0631debc8fc",
"BusinessId": "ae650ce8-a795-431c-bcd5-e172e61cd266",
"Form1099Type": "MISCCorrection",
"Form1099Records": {
"SuccessRecords": [
{
"SequenceId": "001",
"PrevReportedRecordId": "0d897ea0-40b5-460f-9b65-4e98a2993d1b",
"RecordId": "f5b9effa-0b00-4ad1-92a2-47d7eb53c93f",
"RecipientId": "c695e1ce-b0b4-4916-9550-fca43d1f0ab0",
"FederalReturn": {
"Status": "CREATED",
"StatusTs": "2023-12-18 07:51:50 -05:00",
"Info": null,
"Errors": null
},
"StateReturns": [
{
"StateCd": "PA",
"Status": "NA",
"StatusTs": null,
"Info": "We do not support State filing corrections. It is your responsibility to file to the state, If there are any state specific information to be corrected.",
"Errors": null
},
{
"StateCd": "AZ",
"Status": "NA",
"StatusTs": null,
"Info": "We do not support State filing corrections. It is your responsibility to file to the state, If there are any state specific information to be corrected.",
"Errors": null
}
],
"Postal": {
"Status": "CREATED",
"StatusTs": "2023-12-18 07:51:50 -05:00",
"Info": null
},
"OnlineAccess": null
}
],
"ErrorRecords": null
},
"Errors": null
}