List
Lists all Form 1099-MISC returns created and transmitted on the account for a particular Submission or Payer. Form 1099-MISC returns will be listed based on the filters sent in the Request.
GET Form1099MISC/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-MISC records based on the given TINType and TIN. |
TIN | string | List the 1099-MISC records based on the given TIN. |
TaxYear | string | List the 1099-MISC records based on the given taxyear. |
Page | number | Pulls the records listed in the page selected |
PageSize | number | Number of 1099-MISC records to be listed in each page. |
EfileStatus | string | List the 1099-MISC records based on the status ("CREATED, UNDERPROCESS, SENTTOAGENCY, TRANSMITTED, ACCEPTED, REJECTED") |
FromDate | string | Enter a date from which the Form 1099-Misc records need to be listed in MM/DD/YYYY format. |
ToDate | string | Enter a date till which the 1099-Misc records created are to be listed in MM/DD/YYYY format. |
Request Params
"Form1099MISC/List?BusinessId=b161f84d-d38e-4d37-a2a4-ec952f8462cb"
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-MISC records. |
SubmissionId | Guid | Unique identifier of a submission |
BusinessId | Guid | Unique identifier of a business |
PayerRef | string | Unique identifier of a 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 | Employer Identification Number or Social Security Number of the business. |
ContactNm | string | Contact Name of the Business. |
TaxYear | string | Tax year of 1099-MISC 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 1099-MISC return is created. |
RecipientId | Guid | An unique identifier generated by TaxBandits for a Recipient when a 1099-MISC 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. |
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 1099-MISC |
Id | string | Returns the validation error Id. |
Name | string | Name of the validation error. |
Message | string | Description of the validation error. |
StateReturns | object[] | Returns collection of state returns information |
StateCd | string | Returns the state code of the state for which the return is filed. |
Status | string | Returns the record status of the state return. |
StatusTs | string | Date and time of the return created. |
Info | string | Returns the information about the state for which we are not supporting state filing. |
Errors | object[] | Shows error information in state returns of Form 1099-MISC |
Id | string | Returns the validation error Id. |
Name | string | Name of the validation error. |
Message | string | Description of the validation error. |
Postal | object | Returns the status and StatusTs of postal mailing service for Form 1099-MISC. |
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. |
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 1099-MISC 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 1099-MISC 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": "MISC",
"Form1099Records": [
{
"SubmissionId": "00e93ad5-faa7-45f2-968b-02f753cdfd4c",
"BusinessId": "b161f84d-d38e-4d37-a2a4-ec952f8462cb",
"PayerRef": "Pe1234",
"BusinessNm": "Snowdaze LLC",
"FirstNm": null,
"LastNm": null,
"MiddleNm": null,
"Suffix": null,
"EINorSSN": "62-7369245",
"ContactNm": "Chandler White",
"TaxYear": "2021",
"Recipient": {
"SequenceId": "1",
"RecordId": "02d1de6d-c04e-48f4-a149-eb7a85af136c",
"RecipientId": "ff406310-e6bd-4538-b1cc-0354bb5c1756",
"RecipientNm": "Stephen Davis",
"FirstNm": null,
"LastNm": null,
"MiddleNm": null,
"Suffix": null,
"TINType": "EIN",
"TIN": "39-3817572",
"FederalReturn": {
"Status": "CREATED",
"StatusTs": "2024-06-29 06:51:54 -04:00",
"Info": null,
"Errors": null
},
"StateReturns": [
{
"StateCd": "AZ",
"Status": "Created",
"StatusTs": "2024-06-29 06:52:39 -04:00",
"Info": null,
"Errors": null
}
],
"Postal": {
"Status": "CREATED",
"StatusTs": "2024-06-29 06:51:54 -04:00",
"Info": null
},
"OnlineAccess": {
"Status": "CREATED",
"Email": "mark+32@sample.com",
"Info": null
}
}
}
],
"TotalRecords": 1,
"TotalPages": 1,
"Page": 1,
"PageSize": 100,
"Errors": null
}