List
Lists all Form 1099-NEC returns created and transmitted on the account for a particular Submission or Payer. Form 1099-NEC returns will be listed based on the filters sent in the Request.
GET Form1099NEC/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 NEC records based on the given TINType and TIN. |
TIN | string | List the 1099 NEC records based on the given TIN. |
TaxYear | string | List the 1099 NEC records based on the given taxyear. |
Page | number | Pulls the records listed in the page selected |
PageSize | number | Number of 1099 NEC records to be listed in each page. |
EfileStatus | string | List the 1099 NEC records based on the status ("CREATED, UNDERPROCESS, SENTTOAGENCY, TRANSMITTED, ACCEPTED, REJECTED") |
FromDate | string | List 1099 NEC records created from |
ToDate | string | List 1099 NEC records created up to |
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 NEC 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 | Employer Identification Number or Social Security Number. |
ContactNm | string | Contact Name of the Business. |
TaxYr | string | Tax Year of Form Nec to be filed. |
Allowed Values: "2021", "2022". | ||
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 1099-NEC return is created. |
RecipientId | Guid | An unique identifier generated by TaxBandits for a Recipient when a 1099-NEC 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 NEC. |
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 NEC 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
"Form1099NEC/List?SubmissionId=1a333c54-1d01-41bf-8283-f43211e918c4&BusinessId=8d6e3938-2af4-41d2-ba02-17796f00aae2&TINType=SSN&TIN=092115111&TaxYear=2021&Page=1&PageSize=10&EfileStatus=ALL&FromDate=11-01-2021&ToDate=11-30-2021"
Response JSON
{
"StatusCode": 200,
"StatusName": "Ok",
"StatusMessage": "Successful API call",
"Form1099Type": "NEC",
"Form1099Records": [
{
"SubmissionId": "1a333c54-1d01-41bf-8283-f43211e918c4",
"BusinessId": "8d6e3938-2af4-41d2-ba02-17796f00aae2",
"PayerRef": "Pe123",
"BusinessNm": "Brian LLC",
"IsEIN": false,
"EINorSSN": "092-11-5111",
"ContactNm": "Brian O Relly",
"TaxYear": "2021",
"Recipient": {
"SequenceId": "001",
"RecordId": "1ee98e82-b1f0-43f7-9e0c-95b3a1e90ff9",
"RecipientId": "91676dd6-ddba-41a4-8a9f-3bff130df96b",
"RecipientNm": "Mark Davis",
"TINType": "ATIN",
"TIN": "391-11-4511",
"Status": "CREATED"
}
}
],
"TotalRecords": 1,
"TotalPages": 1,
"Page": 1,
"PageSize": 10,
"Errors": null
}