Skip to main content
Version: 1.7.3

List

GET Form5498/List 
Run in Postman

Request Params

FieldTypeDescription
SubmissionIdGuidUnique identifier of a submission
BusinessIdGuidUnique identifier of a business
TINTypestringList the 5498 records based on the given TINType and TIN.
TINstringList the 5498 records based on the given TIN.
Size Range:9
TaxYearstringList the 5498 records based on the given taxyear.
Allowed values: "2022","2023"
PagenumberPulls the records listed in the page selected
PageSizenumberNumber of 5498 records to be listed in each page.
EfileStatusstringList the 5498 records based on the status ("CREATED, UNDERPROCESS, SENTTOAGENCY, TRANSMITTED, ACCEPTED, REJECTED")
FromDatestringEnter a date from which the Form 5498 records need to be listed in MM/DD/YYYY format.
ToDatestringEnter a date till which the 5498 records created are to be listed in MM/DD/YYYY format.

Request Params

"Form5498/List?SubmissionId=eeee66d3-5291-4675-828a-f153616e99ca&BusinessId=e03eff49-ceb4-4d5a-a991-a50e6be69fb3&TINType=EIN&TIN=804663137&TaxYear=2023&Page=1&PageSize=10&EfileStatus=ALL&FromDate=11-01-2023&ToDate=11-30-2023"

Response Body

FieldTypeDescription
StatusCodenumberReturns the HTTP status codes like 200,300 etc.
StatusNamestringName of the status code
StatusMessagestringDetailed status message
Form5498TypestringDenotes the type of 5498 form.
Form5498Recordsobject[]Returns detailed information of the Form 5498 records.
    SubmissionIdGuidUnique identifier of a submission
    BusinessIdGuidUnique identifier of a business
    PayerRefstringUnique identifier of the payer.
    BusinessNmstringName of the business
    IsEINBooleanWhen true, identifies the business with an EIN.
    EINorSSNstringWhen IsEIN is true, use Employer Identification Number (EIN). When IsEIN is false, use Social Security Number (SSN)
    ContactNmstringContact Name of the Business.
    TaxYearstringTax year of 5498 to be filed.
    RecipientobjectDetails of the Recipient.
        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.
        RecipientNmBooleanName of Recipient.
        TINTypestringTIN type of the Recipient.
        TINstringTIN of the Recipient.
        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.
        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.
        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.
TotalRecordsnumberTotal number of records.
TotalPagesnumberTotal number of pages.
PagenumberPulls the records listed in the page selected.
PageSizenumberNumber of 5498 records to be listed in each page.
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",
"Form5498Type": "5498",
"Form5498Records": [
{
"SubmissionId": "eeee66d3-5291-4675-828a-f153616e99ca",
"BusinessId": "e03eff49-ceb4-4d5a-a991-a50e6be69fb3",
"PayerRef": "AB12E",
"BusinessNm": "Snowdaze LLC",
"IsEIN": true,
"EINorSSN": "80-4663137",
"ContactNm": "John",
"TaxYear": "2023",
"Recipient": {
"SequenceId": "1",
"RecordId": "c0bfc6ce-9c6e-4031-8ab5-3d1099e1c0e7",
"RecipientId": "1af70d8b-9b55-4139-84bd-aedcb7fdfa07",
"RecipientNm": "Milo Schmeler",
"TINType": "SSN",
"TIN": "141-25-6859",
"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
}
}
}
],
"TotalRecords": 1,
"TotalPages": 1,
"Page": 1,
"PageSize": 100,
"Errors": null
}