List
GET Form5498/List
Request Params
Field | Type | Description |
---|---|---|
SubmissionId | Guid | Unique identifier of a submission |
BusinessId | Guid | Unique identifier of a business |
TINType | string | List the 5498 records based on the given TINType and TIN. |
TIN | string | List the 5498 records based on the given TIN. Size Range:9 |
TaxYear | string | List the 5498 records based on the given taxyear. Allowed values: "2022","2023","2024" |
Page | number | Pulls the records listed in the page selected |
PageSize | number | Number of 5498 records to be listed in each page. |
EfileStatus | string | List the 5498 records based on the status ("CREATED, UNDERPROCESS, SENTTOAGENCY, TRANSMITTED, ACCEPTED, REJECTED") |
FromDate | string | Enter a date from which the Form 5498 records need to be listed in MM/DD/YYYY format. |
ToDate | string | Enter a date till which the 5498 records created are to be listed in MM/DD/YYYY format. |
Request Params
Form5498/list?BusinessId=b1c21945-26b0-4dda-af2c-8288344e207e
Response Body
Field | Type | Description |
---|---|---|
StatusCode | number | Returns the HTTP status codes like 200,300 etc. |
StatusName | string | Name of the status code |
StatusMessage | string | Detailed status message |
Form5498Type | string | Denotes the type of 5498 form. |
Form5498Records | object[] | Returns detailed information of the Form 5498 records. |
SubmissionId | Guid | Unique identifier of a submission |
BusinessId | Guid | Unique identifier of a business |
PayerRef | string | Unique identifier of the payer. |
BusinessNm | string | Name of the business |
FirstNm | string | First Name of the Individual |
MiddleNm | string | Middle Name of the Individual |
LastNm | string | Last Name of the Individual |
Suffix | string | Suffix of the Individual |
EINorSSN | string | When IsEIN is true, use Employer Identification Number (EIN). When IsEIN is false, use Social Security Number (SSN) |
ContactNm | string | Contact Name of the Business. |
TaxYear | string | Tax year of 5498 to be filed. |
Recipient | object | Details of the Recipient. |
SequenceId | string | An 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. |
RecordId | Guid | An unique identifier generated by TaxBandits when a 5498 return is created. |
RecipientId | Guid | An 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. |
RecipientNm | Boolean | Name of Recipient. |
FirstNm | string | First Name of the Individual |
MiddleNm | string | Middle Name of the Individual |
LastNm | string | Last Name of the Individual |
Suffix | string | Suffix of the Individual |
TIN | string | TIN of the Recipient. |
PayeeRef | string | A unique identifier for each payee completing their information. |
AccountNum | string | Account number of Payer having multiple accounts for a recipient for whom more than one Form 1099-NEC is filed. Size Range: 4..20 Note: If the account number on the return you file is the same as any previously filed return, TaxBandits will append 3 random numbers at the end of the account number. |
Postal | object | Returns the status and StatusTs of postal mailing service for Form 5498. |
Status | string | Returns the status of postal order. |
StatusTs | string | Returns the date and time of the postal order created. |
Info | string | Returns the information about Postal mailing service. |
FederalReturn | object | Returns the record status and StatusTs of federal return. |
Status | string | Returns the record status. |
StatusTs | string | Returns date and time of return created. |
Info | string | Returns information about the Federal Filing service. |
Errors | object[] | Shows error information in state returns of Form 5498. |
OnlineAccess | object | Returns the Email address for whom the online access to be given and Status of online access. |
Status | string | Returns status of online access for Form 5498 return. |
string | Email address for whom the online access to be given. | |
Info | string | Information about the online access service. |
TotalRecords | number | Total number of records. |
TotalPages | number | Total number of pages. |
Page | number | Pulls the records listed in the page selected. |
PageSize | number | Number of 5498 records to be listed in each page. |
Errors | object[] | Shows detailed error information |
Id | string | Returns the validation error id. |
Name | string | Name of the validation error. |
Message | string | Description 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",
"Form5498Type": "5498",
"Form5498Records": [
{
"SubmissionId": "f14cf437-c3a3-4413-8ea6-bea04613ffbf",
"BusinessId": "6c1f489f-7f6f-4853-a269-b6149ff2f4f4",
"PayerRef": null,
"BusinessNm": null,
"FirstNm": "James",
"LastNm": "Smith",
"MiddleNm": null,
"Suffix": null,
"IsEIN": false,
"EINorSSN": "804-66-3137",
"ContactNm": "JAmes Smith",
"TaxYear": "2024",
"Recipient": {
"SequenceId": "1",
"RecordId": "b95e4183-bf8d-4812-a808-199823ced336",
"RecipientId": "eff36c38-4592-427a-8405-dfa187cde82e",
"RecipientNm": null,
"FirstNm": "Shawn",
"LastNm": "Willams",
"MiddleNm": null,
"Suffix": null,
"TINType": "SSN",
"TIN": "141-26-4749",
"PayeeRef": "Payee001",
"AccountNum": "20241520058563079953",
"FederalReturn": {
"Status": "CREATED",
"StatusTs": "2024-07-01 08:25:54 -04:00",
"Info": null,
"Errors": null
},
"Postal": null,
"OnlineAccess": {
"Status": "CREATED",
"Email": "shawn@sample.com",
"Info": null
}
}
}
],
"TotalRecords": 1,
"TotalPages": 1,
"Page": 1,
"PageSize": 100,
"Errors": null
}