Skip to main content
Version: 1.7.3

Status

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

Federal

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

Postal Mailing

  • 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

  • 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 Form1098/Status 
Run in Postman

Request Params

FieldTypeDescription
SubmissionIdGuidUnique identifier of a submission
RecordIdsstringNumber of record Ids to get status.

Request Param

Get status with only the SubmissionID

"Form1098/status?SubmissionId=b77babf6-5855-41dd-9495-f0879ce832af"

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 a Payer.
Form1098TypestringDenotes the type of 1098 form.
Form1098RecordsobjectPulls Form 1098 records with Success and Error statuses
    SuccessRecordsobject[]It will show the detailed information about the success status of Form 1098 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.
        RecordIdGuidAn unique identifier generated by TaxBandits when a 1098 return is created.
        RecipientIdGuidA unique identifier generated by TaxBandits for a Recipient when a 1098 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.
            Errorsobject[]Shows error information in state returns of Form 1098
                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 1098.
            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 1098 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 1098 Records.
Errorsobject[]Shows detailed error information
    IdstringReturns the validation error Id
    NamestringName of the validation error
    MessagestringDescription of the validation error

Response JSON

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

{
"StatusCode": 200,
"StatusName": "Ok",
"StatusMessage": "Successful API call",
"SubmissionId": "b77babf6-5855-41dd-9495-f0879ce832af",
"BusinessId": "129bc397-2fdf-4318-ac39-d89112443e91",
"PayerRef": "WEYCF8FBAV",
"Form1098Type": "1098",
"Form1098Records": {
"SuccessRecords": [
{
"SequenceId": "1",
"RecordId": "71b7db23-64a1-4c0b-9414-e7ecc0d8df41",
"RecipientId": "2d3b7444-a3a1-4a46-ac5d-311f02d8d16a",
"FederalReturn": {
"Status": "CREATED",
"StatusTs": "2023-05-11 07:03:50 +00:00",
"Info": null,
"Errors": null
},
"Postal": {
"Status": "CREATED",
"StatusTs": "2023-05-11 07:03:50 +00:00",
"Info": null
},
"OnlineAccess": {
"Status": "CREATED",
"Email": "shawn@sample.com",
"Info": null
},
"ScheduleFiling": {
"ScheduledOn": null,
"Info": "This service will be available soon"
}
}
],
"ErrorRecords": null
},
"Errors": null
}