List
Lists all Form 1099-DIV returns created and transmitted on the account for a particular Submission or Payer. Form 1099-DIV returns will be listed based on the filters sent in the Request.
GET Form1099DIV/List
Request Params
Field | Type | Description |
---|---|---|
SubmissionId | Guid | Unique identifier of a submission |
BusinessId | Guid | Unique identifier of a business |
TINType | string | List the 1099-DIV records based on the given TINType and TIN. |
TIN | string | List the 1099-DIV records based on the given TIN. |
TaxYear | string | List the 1099-DIV records based on the given taxyear. |
Page | number | Pulls the records listed in the page selected |
PageSize | number | Number of 1099-DIV records to be listed in each page. |
EfileStatus | string | List the 1099-DIV records based on the status ("CREATED, UNDERPROCESS, SENTTOAGENCY, TRANSMITTED, ACCEPTED, REJECTED") |
FromDate | string | Enter a date from which the Form 1099-DIV records need to be listed in MM/DD/YYYY format. |
ToDate | string | Enter a date till which the 1099-DIV records created are to be listed in MM/DD/YYYY format. |
Request Params
"SubmissionId=46c0e092-bcc4-4067-83e3-167583e569bb&BusinessId=92d399f5-61b4-4e9a-b985-6a92c95e9f70&TIN=256196477&Page=1&PageSize=10&EfileStatus=ALL&FromDate=11-01-2022&ToDate=11-30-2022&TINType=SSN"
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 |
Form1099Type | string | Denotes the type of 1099 form. |
Form1099Records | object[] | Returns detailed information of the Form 1099-DIV records. |
SubmissionId | Guid | Unique identifier of a submission |
BusinessId | Guid | Unique identifier of a business |
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 |
PayerRef | string | An unique identifier for each payer completing their information. This identifier can be used in future references of the payer in the API |
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 1099-DIV 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 1099-DIV return is created. |
RecipientId | Guid | A unique identifier generated by TaxBandits for a Recipient when a 1099-DIV 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 |
TINType | string | TIN type of the Recipient. |
TIN | string | TIN of the Recipient. |
Status | string | The status of Form 1099-DIV. |
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 1099-DIV 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",
"Form1099Type": "DIV",
"Form1099Records": [
{
"SubmissionId": "46c0e092-bcc4-4067-83e3-167583e569bb",
"BusinessId": "2c12d45c-9d34-4cfd-acab-ada8613250a1",
"PayerRef": "Snow123",
"BusinessNm": "Snowdaze LLC",
"IsEIN": true,
"FirstNm": null,
"LastNm": null,
"MiddleNm": null,
"Suffix": null,
"EINorSSN": "71-3787159",
"ContactNm": null,
"TaxYear": "2021",
"Recipient": {
"SequenceId": "1",
"RecordId": "b02bf9c8-291e-4795-ab15-c4438ed1b74f",
"RecipientId": "d85fbc97-2eb8-4ffc-ba47-b70a3261a261",
"RecipientNm": "Dairy Delights LLC Coco Milk",
"FirstNm": null,
"LastNm": null,
"MiddleNm": null,
"Suffix": null,
"TINType": "EIN",
"TIN": "36-3814577",
"FederalReturn": {
"Status": "CREATED",
"StatusTs": "2024-06-28 23:56:08 -04:00",
"Info": null,
"Errors": null
},
"StateReturns": null,
"Postal": null,
"OnlineAccess": {
"Status": "CREATED",
"Email": "shawn@sample.com",
"Info": null
}
}
}
],
"TotalRecords": 1,
"TotalPages": 0,
"Page": 1,
"PageSize": 100,
"Errors": null
}