Skip to main content
Version: 1.7.0

Status

This method will return the current status of Form 1099 for a particular submission or for a particular recipient.

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.

State Return Statuses:

  • Not Created: State filing is not opted for the return. IsStateFiling in the submission manifest must be set as TRUE to enable state filing.

  • Created: Form 1099 state return has been created and not yet transmitted by the user.

  • Transmitted: Form 1099 state return has been transmitted by the user.

  • Order Received: State order is received and waiting in our efile queue.

  • Under Process: Our efile system is processing the Form 1099 for the state which will be sent to the state DOR soon.

  • Sent to Agency: Form 1099 State return has been sent to the DOR and we are waiting for the result.

  • Accepted: Form 1099 state return is accepted by the DOR.

  • Rejected: Form 1099 state return is rejected by the DOR 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 Form1099S/Status 
Run in Postman

Request Params

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

Request Params

"Form1099S/Status?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
BusinessIdGuidUnique identifier of a Business.
PayerRefstringUnique identifier of the payer.
Form1099TypestringDenotes the type of 1099 form.
Form1099RecordsobjectPulls Form 1099-S records with Success and Error statuses
    SuccessRecordsobject[]It will show the detailed information about the success status of Form 1099-S 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 generated by TaxBandits when a 1099-S return is created.
        RecipientIdGuidA unique identifier generated by TaxBandits for a Recipient when a 1099-S 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.
        PostalobjectReturns the status and StatusTs of postal mailing service for Form 1099-S.
            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-S return.
            EmailstringEmail address for whom the online access to be given.
            InfostringInformation about the online access service.
        ScheduleFilingobjectReturns the date of the schedule filing.
            ScheduledOnstringDate of the schedule filing to know when the return to be filed to the IRS.
            InfostringInformation about Schedule Filing service.
    ErrorRecordsobject[]It will show the detailed information about the error status of Form 1099-S 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": "94419089-f9fe-4390-b622-ee06f7682754",
"BusinessId": "7eba6458-72f3-4aa8-9d1e-bd7c0d36fa50",
"PayerRef": "9894D",
"Form1099Type": "S",
"Form1099Records": {
"SuccessRecords": [
{
"SequenceId": "001",
"RecordId": "aabf8859-c07a-4ea1-bdc5-0088cf037f03",
"RecipientId": "301ea317-b0b8-4018-b0b8-2832473bf737",
"FederalReturn": {
"Status": "Transmitted",
"StatusTs": "2021-11-24 09:48:24 -05:00",
"Info": null
},
"Postal": {
"Status": "RECEIVED",
"StatusTs": "2021-11-24 09:49:09 -05:00",
"Info": null
},
"OnlineAccess": {
"Status": "CREATED",
"Email": "sample@bodeem.com",
"Info": null
},
"ScheduleFiling": {
"ScheduledOn": null,
"Info": "This service will be available soon"
}
}
],
"ErrorRecords": null
},
"Errors": null
}