Skip to main content
Version: 1.7.3

Status

GET Form5498/Status 
Run in Postman

Request Params

FieldTypeDescription
SubmissionIdGuidUnique identifier of a submission
RecordIdGuidAn unique identifier generated by TaxBandits when a 5498 return is created.

Request Params

"Form5498/status?SubmissionId=eeee66d3-5291-4675-828a-f153616e99ca&RecordId=c0bfc6ce-9c6e-4031-8ab5-3d1099e1c0e7"

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.
Form5498TypestringDenotes the type of 5498 form.
Form5498RecordsobjectPulls Form 5498 records with Success and Error statuses
    SuccessRecordsobject[]It will show detailed information about the success status of Form 5498 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 return is created.
        RecipientIdGuidAn unique identifier generated by TaxBandits for a Recipient when a 5498 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
        PostalobjectReturns the status and StatusTs of postal mailing service for Form 5498 .
            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 return.
            EmailstringEmail address for whom the online access to be given.
            InfostringInformation about the online access service.
        ScheduleFilingobjectReturns the date of the schedule filing.
    ErrorRecordsobject[]It will show the detailed information about the error status of Form 5498 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": "eeee66d3-5291-4675-828a-f153616e99ca",
"BusinessId": "e03eff49-ceb4-4d5a-a991-a50e6be69fb3",
"PayerRef": "AB12E",
"Form5498Type": "5498",
"Form5498Records": {
"SuccessRecords": [
{
"SequenceId": "1",
"RecordId": "c0bfc6ce-9c6e-4031-8ab5-3d1099e1c0e7",
"RecipientId": "1af70d8b-9b55-4139-84bd-aedcb7fdfa07",
"FederalReturn": {
"Status": "CREATED",
"StatusTs": "2023-10-31 09:10:04 -04:00",
"Info": null,
"Errors": null
},
"Postal": {
"Status": "CREATED",
"StatusTs": "2023-10-31 09:10:04 -04:00",
"Info": null
},
"OnlineAccess": {
"Status": "CREATED",
"Email": "sample@bodeem.com",
"Info": null
},
"ScheduleFiling": null
}
],
"ErrorRecords": null
},
"Errors": null
}