List
Lists all Form 1099-C returns created and transmitted on the account for a particular Submission or Payer. Form 1099-C returns will be listed based on the filters sent in the Request.
GET Form1099C/List
Request Body
Field | Type | Description |
---|---|---|
SubmissionId | Guid | Unique identifier of a submission |
BusinessId | Guid | Unique identifier of a business |
TINType | string | List the 1099 C records based on the given TINType and TIN. |
TIN | string | List the 1099 C records based on the given TIN. |
TaxYear | string | List the 1099 C records based on the given taxyear. |
Page | number | Pulls the records listed in the page selected |
PageSize | number | Number of 1099 C records to be listed in each page. |
EfileStatus | string | List the 1099 C records based on the status ("CREATED, UNDERPROCESS, SENTTOAGENCY, TRANSMITTED, ACCEPTED, REJECTED") |
FromDate | string | Enter a date from which the Form 1099-C records need to be listed. |
ToDate | string | Enter a date till which the 1099-C records created are to be listed. |
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 C 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 |
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 C 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-C return is created. |
RecipientId | Guid | A unique identifier generated by TaxBandits for a Recipient when a 1099-C return is created. You can use this id for your future reference to Update. |
RecipientNm | Boolean | Name of Recipient. |
TINType | string | TIN type of the Recipient. |
TIN | string | TIN of the Recipient. |
Status | string | The status of Form 1099 C. |
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 C 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 |
Request JSON
Form1099C/List?SubmissionId=0aacb4f9-0ae8-4db6-a94c-3864db2a1e3c&BusinessId=96b7fc95-ae6a-4c78-9b59-d895b9e97367&TINType=EIN&TIN=511107789&TaxYear=2022&Page=1&PageSize=100&FromDate=01-01-2022&ToDate=12-31-2022
Response JSON
{
"StatusCode": 200,
"StatusName": "Ok",
"StatusMessage": "Successful API call",
"Form1099Type": "C",
"Form1099Records": [
{
"SubmissionId": "0aacb4f9-0ae8-4db6-a94c-3864db2a1e3c",
"BusinessId": "96b7fc95-ae6a-4c78-9b59-d895b9e97367",
"PayerRef": "PR001",
"BusinessNm": "Paulson Pvt Ltd.",
"IsEIN": true,
"EINorSSN": "51-1107789",
"ContactNm": "Kenneth Barister",
"TaxYear": "2022",
"Recipient": {
"SequenceId": "728896127",
"RecordId": "e19722c4-d8bf-423f-99a7-f4c6bc7f252f",
"RecipientId": "fb7855af-a867-4f01-95e6-0cd0e21e2255",
"RecipientNm": "Zenith Enterprises Zenith Inc.",
"TINType": "EIN",
"TIN": "21-7627763",
"FederalReturn": {
"Status": "CREATED",
"StatusTs": "2022-12-29 02:06:16 -05:00",
"Info": null,
"Errors": null
},
"Postal": {
"Status": "CREATED",
"StatusTs": "2022-12-29 02:06:16 -05:00",
"Info": null
},
"OnlineAccess": {
"Status": "CREATED",
"Email": "john@gmail.com",
"Info": null
}
}
}
],
"TotalRecords": 1,
"TotalPages": 1,
"Page": 1,
"PageSize": 100,
"Errors": null
}