List
Lists all Form 1098-T returns created and transmitted on the account for a particular Submission or Payer. Form 1098-T returns will be listed based on the filters sent in the Request.
GET Form1098T/List
Request Params
Field | Type | Description |
---|---|---|
SubmissionId | Guid | Unique identifier of a submission |
BusinessId | Guid | Unique identifier of a business |
TINType | string | List the 1098-T records based on the given TINType and TIN. |
TIN | string | List the 1098-T records based on the given TIN. |
TaxYear | string | List the 1098-T records based on the given taxyear. |
Page | number | Pulls the records listed in the page selected |
PageSize | number | Number of 1098-T records to be listed in each page. |
EfileStatus | string | List the 1098-T records based on the status ("CREATED, UNDERPROCESS, SENTTOAGENCY, TRANSMITTED, ACCEPTED, REJECTED") |
FromDate | string | Enter a date from which the Form 1098-T records need to be listed in MM/DD/YYYY format. |
ToDate | string | Enter a date till which the 1098-T records created are to be listed in MM/DD/YYYY format. |
Request Params
"Form1098T/List?BusinessId=ea19fd3d-0182-4460-9d96-16134b395313"
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 |
Form1098Type | string | Denotes the type of 1098 form. |
Form1098TRecords | object[] | Returns detailed information of the Form 1098-T 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 Allowed values"Jr", "Sr", "I", "II", "III", "IV", "V", "VI", "VII" |
IsEIN | Boolean | When true, identifies the business with an EIN. |
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 1098-T to be filed. |
Recipient | object | Details of the Recipient. |
SequenceId | string | A 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 | A unique identifier generated by TaxBandits when a 1098-T return is created. |
RecipientId | Guid | A unique identifier generated by TaxBandits for a Recipient when a 1098-T return is created. You can use this id for your future reference to Update. |
RecipientNm | string | 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 Allowed values"Jr", "Sr", "I", "II", "III", "IV", "V", "VI", "VII" |
TINType | string | TIN type of the Recipient. |
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. |
Status | string | The status of Form 1098-T. |
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 1098-T 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",
"Form1098Type": "T",
"Form1098TRecords": [
{
"SubmissionId": "e34064ec-7adb-40c7-b905-7a67d2b02276",
"BusinessId": "ea19fd3d-0182-4460-9d96-16134b395313",
"PayerRef": "Snow123",
"BusinessNm": "SnowDaze LLC",
"IsEIN": true,
"FirstNm": null,
"LastNm": null,
"MiddleNm": null,
"Suffix": null,
"EINorSSN": "71-3787160",
"ContactNm": "James Smith",
"TaxYear": "2023",
"Recipient": {
"SequenceId": "1",
"RecordId": "57eb31a9-6081-48cd-bb87-058e9a67c09f",
"RecipientId": "561266df-899a-45d5-a2e3-bbc868564614",
"RecipientNm": null,
"FirstNm": "Shawn",
"LastNm": "Williams",
"MiddleNm": "Mathew",
"Suffix": "Sr",
"TINType": "SSN",
"TIN": "363-81-4566",
"PayeeRef": "Payee001",
"AccountNum": "20241520058563079953",
"FederalReturn": {
"Status": "TRANSMITTED",
"StatusTs": "2024-06-27 03:29:21 -04:00",
"Info": null,
"Errors": null
},
"Postal": null,
"OnlineAccess": {
"Status": "EMAIL_SENT",
"Email": "shawn@sample.com",
"Info": null
}
}
}
],
"Page": 1,
"TotalRecords": 1,
"TotalPages": 1,
"PageSize": 100,
"Errors": null
}