Skip to main content
Version: 1.7.1

List

GET Form1099SA/List 
Run in Postman

Request Params

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

Request Params

form1099SA/List?SubmissionId=f2de97de-c8de-45d5-bc60-9728b4a35abe&TaxYear=2023&FromDate=01/02/2024&ToDate=01/11/2024

Response Body

FieldTypeDescription
StatusCodenumberReturns the HTTP status codes like 200,300 etc.
StatusNamestringName of the status code
StatusMessagestringDetailed status message
Form1099SATypestringDenotes the type of 1099 SA form.
Form1099SARecordsobject[]Returns detailed information of the Form 1099 SA records.
    SubmissionIdGuidUnique identifier of a submission.
    BusinessIdGuidUnique identifier of a business.
    PayerRefstringUnique identifier of the payer.
    BusinessNmstringName of the business.
    IsEINBooleanWhen true, identifies the business with an EIN.
    EINorSSNstringWhen IsEIN is true, use Employer Identification Number (EIN). When IsEIN is false, use Social Security Number (SSN)
    ContactNmstringContact Name of the Business.
    TaxYearstringTax year of 1099 SA to be filed.
    RecipientobjectDetails of the Recipient.
        SequenceIdstringA 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.
        RecordIdGuidA unique identifier generated by TaxBandits when a 1099 SA return is created.
        RecipientIdGuidA unique identifier generated by TaxBandits for a Recipient when a 1099 SA 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 service for Form 1099 SA.
            StatusstringReturns the record status.
            StatusTsstringReturns date and time of return created.
            InfostringReturns information about the Federal Filing service.
            Errorsobject[]Shows detailed error information.
        PostalobjectReturns the status and StatusTs of postal mailing service for Form 1099 SA.
            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 SA 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 1099SArecords 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": "SA",
"Form1099Records": [
{
"SubmissionId": "f2de97de-c8de-45d5-bc60-9728b4a35abe",
"BusinessId": "04485bd3-713a-4dac-b460-4e9b3fd65473",
"PayerRef": "PAY123",
"BusinessNm": "Snowdaze LLC",
"IsEIN": true,
"EINorSSN": "46-5899082",
"ContactNm": "Brian O Relly",
"TaxYear": "2023",
"Recipient": {
"SequenceId": "001",
"RecordId": "f7b408fb-6e2a-443e-9214-ee0101f00ed6",
"RecipientId": "2eb001c6-161c-4428-b795-c8b75b7efeea",
"RecipientNm": "Alex Davis",
"TINType": "EIN",
"TIN": "24-5614512",
"FederalReturn": {
"Status": "CREATED",
"StatusTs": "2024-01-11 00:15:57 -05:00",
"Info": null,
"Errors": null
},
"Postal": {
"Status": "CREATED",
"StatusTs": "2024-01-11 00:15:57 -05:00",
"Info": null
},
"OnlineAccess": {
"Status": "CREATED",
"Email": "sample12@bodeem.com",
"Info": null
}
}
}
],
"TotalRecords": 1,
"TotalPages": 1,
"Page": 1,
"PageSize": 100,
"Errors": null
}