Skip to main content
Version: 1.7.0

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 
Run in Postman

Request Params

FieldTypeDescription
SubmissionIdGuidUnique identifier of a submission
BusinessIdGuidUnique identifier of a business
TINTypestringList the 1099-MISC records based on the given TINType and TIN.
TINstringList the 1099-MISC records based on the given TIN.
TaxYearstringList the 1099-MISC records based on the given taxyear.
PagenumberPulls the records listed in the page selected
PageSizenumberNumber of 1099-MISC records to be listed in each page.
EfileStatusstringList the 1099-MISC records based on the status ("CREATED, UNDERPROCESS, SENTTOAGENCY, TRANSMITTED, ACCEPTED, REJECTED")
FromDatestringEnter a date from which the Form 1099-Misc records need to be listed in MM/DD/YYYY format.
ToDatestringEnter a date till which the 1099-Misc records created are to be listed in MM/DD/YYYY format.

Request Params

"Form1099MISC/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 Body

FieldTypeDescription
StatusCodenumberReturns the HTTP status codes like 200,300 etc.
StatusNamestringName of the status code
StatusMessagestringDetailed status message
Form1099TypestringDenotes the type of 1099 form.
Form1099Recordsobject[]Returns detailed information of the Form 1099-MISC records.
    SubmissionIdGuidUnique identifier of a submission
    BusinessIdGuidUnique identifier of a business
    PayerRefstringUnique identifier of a payer.
    BusinessNmstringName of the business
    EINorSSNstringEmployer Identification Number or Social Security Number of the business.
    ContactNmstringContact Name of the Business.
    TaxYearstringTax year of 1099-MISC to be filed.
    RecipientobjectDetails of the Recipient.
        SequenceIdstringAn 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.
        RecordIdGuidAn unique identifier generated by TaxBandits when a 1099-MISC return is created.
        RecipientIdGuidAn 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.
        RecipientNmBooleanName of Recipient.
        TINTypestringTIN type of the Recipient.
        TINstringTIN of the Recipient.
        FederalReturnobjectReturns the record status and StatusTs of federal return.
            StatusstringReturns the record status.
            StatusTsstringReturns date and time of return created.
            InfostringReturns information about the Federal Filing service.
            Errorsobject[]Shows error information in state returns of Form 1099-MISC
                IdstringReturns the validation error Id.
                NamestringName of the validation error.
                MessagestringDescription of the validation error.
        StateReturnsobject[]Returns collection of state returns information
            StateCdstringReturns the state code of the state for which the return is filed.
            StatusstringReturns the record status of the state return.
            StatusTsstringDate and time of the return created.
            InfostringReturns the information about the state for which we are not supporting state filing.
            Errorsobject[]Shows error information in state returns of Form 1099-MISC
                IdstringReturns the validation error Id.
                NamestringName of the validation error.
                MessagestringDescription of the validation error.
        PostalobjectReturns the status and StatusTs of postal mailing service for Form 1099-MISC.
            StatusstringReturns the status of postal order.
            StatusTsstringReturns the date and time of the postal order created.
            InfostringReturns the information about Postal mailing service.
        OnlineAccessobjectReturns the Email address for whom the online access to be given and Status of online access.
            StatusstringReturns status of online access for Form 1099-MISC return.
            EmailstringEmail address for whom the online access to be given.
            InfostringInformation about the online access service.
TotalRecordsnumberTotal number of records.
TotalPagesnumberTotal number of pages.
PagenumberPulls the records listed in the page selected
PageSizenumberNumber of 1099-MISC records to be listed in each page.
Errorsobject[]Shows detailed error information
    IdstringReturns the validation error id
    NamestringName of the validation error
    MessagestringDescription of the validation error

Response JSON

{
"StatusCode": 200,
"StatusName": "Ok",
"StatusMessage": "Successful API call",
"Form1099Type": "MISC",
"Form1099Records": [
{
"SubmissionId": "1a333c54-1d01-41bf-8283-f43211e918c4",
"BusinessId": "8d6e3938-2af4-41d2-ba02-17796f00aae2",
"PayerRef": "Pe123",
"BusinessNm": "ABC LLC",
"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",
"FederalReturn": {
"Status": "CREATED",
"StatusTs": "2023-09-06 01:42:06 -04:00",
"Info": null,
"Errors": null
},
"StateReturns": [
{
"StateCd": "PA",
"Status": "Created",
"StatusTs": "2023-09-06 01:42:17 -04:00",
"Info": null,
"Errors": null
},
{
"StateCd": "AZ",
"Status": "Created",
"StatusTs": "2023-09-06 01:42:17 -04:00",
"Info": null,
"Errors": null
}
],
"Postal": {
"Status": "CREATED",
"StatusTs": "2023-09-06 01:42:06 -04:00",
"Info": null
},
"OnlineAccess": {
"Status": "CREATED",
"Email": "sample@bodeem.com",
"Info": null
}
}
}
],
"TotalRecords": 1,
"TotalPages": 1,
"Page": 1,
"PageSize": 10,
"Errors": null
}