Skip to main content
Version: 1.7.3

List

GET Form5498ESA/List 
Run in Postman

Request Params

FieldTypeDescription
SubmissionIdGuidUnique identifier of a submission
RecordIdsGuid[]An unique identifier generated by TaxBandits when a 5498 ESA return is created. Mention the Form 5498 ESA return's Record ID that you want to get.

Request Params

"Form5498ESA/List?SubmissionId=6569920a-a668-4996-97c4-6cc739f4097f&Recordids=6a328715-6b13-4054-bacd-dca2f4bfa0f6"

Response Body

FieldTypeDescription
StatusCodenumberReturns the HTTP status codes like 200,300 etc.
StatusNamestringName of the status code
StatusMessagestringDetailed status message
Form5498ESATypestringDenotes the type of 5498 ESA form.
Form5498ESARecordsobject[]Returns detailed information of the Form 5498 ESA 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 ESA to be filed.
    RecipientobjectDetails of the Recipient.
        SequenceIdstringA unique number given by an inbound application to identify failed records.
        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.
        RecipientNmBooleanName of Recipient.
        TINTypestringTIN type of the Recipient.
        TINstringTIN of the Recipient.
        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.
TotalRecordsnumberTotal number of records.
TotalPagesnumberTotal number of pages.
PagenumberPulls the records listed in the page selected.
PageSizenumberNumber of 5498 ESA 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": "5498SA",
"Form5498SARecords": [
{
"SubmissionId": "02cb3594-5bc9-4e61-8d2b-1a8117139915",
"BusinessId": "e922521d-33d9-4f17-96d5-21e8c3e0d1ce",
"PayerRef": "Pe123",
"BusinessNm": "Snowdaze LLC",
"IsEIN": true,
"EINorSSN": "62-7369245",
"ContactNm": "John",
"TaxYear": "2023",
"Recipient": {
"SequenceId": "1",
"RecordId": "b7a85950-4ceb-49df-a999-32d3b98d732b",
"RecipientId": "fe153087-9983-4f2f-92a5-3bbf6953109c",
"RecipientNm": "Mark Davis",
"TINType": "EIN",
"TIN": "39-3817572",
"FederalReturn": {
"Status": "CREATED",
"StatusTs": "2023-10-30 05:42:54 -04:00",
"Info": null,
"Errors": null
},
"Postal": {
"Status": "CREATED",
"StatusTs": "2023-10-30 05:42:54 -04:00",
"Info": null
},
"OnlineAccess": {
"Status": "CREATED",
"Email": "sample@bodeem.com",
"Info": null
}
}
},
{
"SubmissionId": "02cb3594-5bc9-4e61-8d2b-1a8117139915",
"BusinessId": "e922521d-33d9-4f17-96d5-21e8c3e0d1ce",
"PayerRef": "Pe123",
"BusinessNm": "Snowdaze LLC",
"IsEIN": true,
"EINorSSN": "62-7369245",
"ContactNm": "John",
"TaxYear": "2023",
"Recipient": {
"SequenceId": "1",
"RecordId": "db8bf4cb-88c3-4d76-bbe0-33575adff411",
"RecipientId": "a5d4f4f5-e1e3-4462-911a-cfe7546e5d84",
"RecipientNm": "Mark Davis",
"TINType": "EIN",
"TIN": "36-3817572",
"FederalReturn": {
"Status": "CREATED",
"StatusTs": "2023-10-30 05:48:30 -04:00",
"Info": null,
"Errors": null
},
"Postal": null,
"OnlineAccess": null
}
},
],
"TotalRecords": 4,
"TotalPages": 1,
"Page": 1,
"PageSize": 250,
"Errors": null
}