Skip to main content
Version: 1.7.3

Status

GET Form5498ESA/Status 
Run in Postman

Request Params

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

Request Params

"Form5498ESA/Status?SubmissionId=215e8a7a-bea1-4aaf-8fbc-8cafd6d71db7&RecordIds=45612bd4-cab9-4518-aafe-4c267dddb66d"

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.
Form5498ESATypestringDenotes the type of 5498 ESA form.
Form5498ESARecordsobjectPulls Form 5498 ESA records with Success and Error statuses
    SuccessRecordsobject[]It will show detailed information about the success status of Form 5498 ESA 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.
        RecordIdGuidAn unique identifier generated by TaxBandits when a 5498 ESA return is created.
        RecipientIdGuidAn unique identifier generated by TaxBandits for a Recipient when a 5498 ESA 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 5498 ESA
        PostalobjectReturns the status and StatusTs of postal mailing service for Form 5498 ESA .
            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 ESA 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 5498 ESA 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": "215e8a7a-bea1-4aaf-8fbc-8cafd6d71db7",
"BusinessId": "f09692ad-d041-45ea-a439-de1b4690d722",
"PayerRef": null,
"Form5498Type": "5498ESA",
"Form5498ESARecords": {
"SuccessRecords": [
{
"SequenceId": "1",
"RecordId": "45612bd4-cab9-4518-aafe-4c267dddb66d",
"RecipientId": "b43d8b2c-735e-4929-94ae-af4220ba7056",
"FederalReturn": {
"Status": "CREATED",
"StatusTs": "2023-10-30 06:59:45 -04:00",
"Info": null,
"Errors": null
},
"Postal": {
"Status": "CREATED",
"StatusTs": "2023-10-30 06:59:45 -04: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
}