Skip to main content
Version: 1.7.3

Status

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

Federal

  • CREATED - Form 5498 SA has been created and has not yet been transmitted.
  • TRANSMITTED - Form 5498 SA has been transmitted by the user.
  • SENT TO AGENCY - Form 5498 SA has been sent to the IRS, and we are waiting for the result from the IRS.
  • ACCEPTED - Form 5498 SA is accepted by the IRS.
  • REJECTED - Form 5498 SA is rejected by the IRS due to some errors. The user must correct the errors and retransmit the forms.

Postal Mailing

  • CREATED - Postal mailing opted for the 5498 Forms.
  • SENT - Form copies are mailed to the recipients.
  • RECEIVED - Form copies are received by the recipients.
  • NOTCREATED - Postal mailing wasn't opted. To opt for postal mailing, the 'IsPostalMailing' in the submission manifest of the Create request must be set to TRUE.

Online Access

  • CREATED - Online Access opted for the 5498 forms, and the secure link to download form copies forms will be emailed to the recipients as soon as the form is transmitted.
  • ORDER_RECIEVED - An order for online access has been received, and the email will be sent to the recipient soon.
  • EMAIL_SENT - A secure link to download form copies has been emailed to the recipients.
  • DOWNLOADED_FORM - The recipient successfully viewed and downloaded the form.
  • VIEWED_FORM - The Recipient has successfully viewed the form.
GET Form5498SACorrection/Status 
Run in Postman

Request Params

FieldTypeDescription
SubmissionIdGuidUnique identifier of a submission

Request Params

Get status with only the SubmissionID

Form5498SACorrection/Status?SubmissionId=9d71ae45-df5f-49f7-86f8-e88f54132fa1

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

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

{
"StatusCode": 200,
"StatusName": "Ok",
"StatusMessage": "Successful API call",
"SubmissionId": "b9fd5295-66ec-4b86-8099-facbc30859ef",
"BusinessId": "a87f8b3a-6f7c-4140-88a1-9ecb5bfbe282",
"PayerRef": null,
"Form5498Type": "5498SACORRECTION",
"Form5498SARecords": {
"SuccessRecords": [
{
"SequenceId": "21",
"PrevReportedRecordId": null,
"RecordId": "6fc275f0-1bd6-405e-90c5-3fa266a0fedf",
"RecipientId": "67e9e7f3-86b6-478c-b1ed-6150c8471666",
"FederalReturn": {
"Status": "CREATED",
"StatusTs": "2024-07-01 06:30:25 -04:00",
"Info": null,
"Errors": null
},
"Postal": {
"Status": "CREATED",
"StatusTs": "2024-07-01 06:30:25 -04:00",
"Info": null
},
"OnlineAccess": {
"Status": "NA",
"Email": null,
"Info": "This Service will be available soon"
}
}
],
"ErrorRecords": null
},
"Errors": null
}