Skip to main content
Version: 1.7.1

List

Use this method to list the TIN Matching records under a particular business or submission. The TIN Matching records can be filtered based on the Status and Date Range.

GET TINMatchingRecipients/List 
Run in Postman

Request Params

FieldTypeDescription
BusinessIdGuidOptional A unique identifier of the business.
TINStringOptional Taxpayer Identification Number of the business. Supply TIN if you do not have the BusinessId.
Size Range: 9-11(Including hyphen)
SubmissionIdGuidOptional Unique identifier of a submission.
StatusStringTIN Matching order status.
Allowed values

"ORDER_CREATED", "UNDER_PROCESS", "SENT_TO_AGENCY", "FAILED", "SUCCESS", "CANCELED", "ALL&quot

PageintOptional Page number that needs to be listed in the Response. If the value is not given, then the page will be defaulted to 1
PageSizeintOptional Number of TIN Matching records to be listed in each page. If the value is not given, then the page size will be defaulted to 100.
FromDateStringOptional List the TIN Matching records between the date range.
ToDateStringOptional List the TIN Matching records between the date range.

Request Params

List with all valid parameters

"TINMatchingRecipients/List?BusinessId=387f41d7-b238-455b-b9d7-48f7d48889f5&TIN=124563758&SubmissionId=220a8c29-a734-4a91-8b0e-bd9cc957503a&Status=SUCCESS&Page=1&PageSize=10&FromDate=03/05/2020&ToDate=03/07/2020"

Response Body

FieldTypeDescription
BusinessobjectBusiness information.
    BusinessIdGuidUnique identifier of the business.
    TINStringTaxpayer Identification Number of the business.
TINMatchingRecordsobjectArray of TIN Matching records returned based on the conditions given in the request.
    SubmissionIdGuidUnique identifier of a submission.
    RecordIdGuidUnique identifier of the record.
    SequenceIdStringUnique record identifier set by the client.
    RecipientIdStringUnique identifier of the recipient.
    TINTypeStringTIN Type of the recipient.
    TINStringTaxpayer Identification Number of the recipient.
    StatusStringTIN Matching order status.
    StatusTsStringTimestamp of the TIN Matching status.
    NumOfAttemptsRmngStringNumber of TIN Matching attempts remaining for the TIN in TaxBandits.
TotalRecordsIntTotal number of records returned in the response.
TotalPagesIntNumber of pages with the records.
PageIntRequested Page Number.
PageSizeIntRequested Page Size.
ErrorsObjectShows detailed error information.

Response JSON

{
"Business": {
"BusinessId": "387f41d7-b238-455b-b9d7-48f7d48889f5",
"TIN": "22-2222222"
},
"TINMatchingRecords": [
{
"SubmissionId": "220a8c29-a734-4a91-8b0e-bd9cc957503a",
"RecordId": "c4653564-d6ad-47cc-99c8-9ef08d6029a6",
"SequenceId": "Pe123451234",
"RecipientId": "f871240d-fded-420b-b424-28bf0dd11261",
"Name": "Snowdaze LLC",
"TINType": "EIN",
"TIN": "12-1231234",
"NumOfAttempts": null,
"Status": "SUCCESS",
"StatusTs": "2021-03-31 13:46:36 -04:00"
},
{
"SubmissionId": "220a8c29-a734-4a91-8b0e-bd9cc957503a",
"RecordId": "1aa8e8e0-11d4-4ec3-87d5-3f0747aaeb74",
"SequenceId": "STS300",
"RecipientId": "d5fe60f5-1eee-4d9a-a4e3-a58ea4bf8615",
"Name": "Steve",
"TINType": "SSN",
"TIN": "222-2312-55",
"NumOfAttempts": null,
"Status": "SUCCESS",
"StatusTs": "2021-03-31 13:46:36 -04:00"
}
],
"TotalRecords": 2,
"TotalPages": 1,
"Page": 1,
"PageSize": 10,
"Errors": null
}