Skip to main content
Version: 1.7.3

Status

This endpoint can be used to retrieve the status of your instant TIN Matching requests.

Statuses in Instant TIN Matching

  • Success - TIN and Name combination match the IRS records
  • Failed - TIN and Name combination doesn't match the IRS records
  • On-Hold - The IRS is having intermittent issues, and TIN Matching hasn't started.
GET InstantTINMatch/Status 

Request Params

FieldTypeDescription
RecordIdGuidA unique identifier generated by TaxBandits when the TIN Matching request is created.
RefIdStringA unique identifier provided for each Instant TIN Matching request.

Request Params

"InstantTINMatch/Status?RecordId=24ef4269-c356-4f0f-ac73-538235f566de&RefId=8596"

Response Body

FieldTypeDescription
StatusCodenumberReturns the HTTP status codes like 200,300 etc.
StatusNamestringName of the status code
StatusMessagestringDetailed status message.
RecordIdGuidA unique identifier generated by TaxBandits when an Instant TIN Matching request is created.
RefIdstringA unique identifier for each Instant TIN Matching request.
TINStatusCodestringReturns status code for the Instant TIN Matching request.
TINStatusstringTIN Matching order status
TINStatusMsgstringDetailed TIN matching status message
Errorsobject[]An array of errors for the recipient.
    IdstringError ID number. This ID is assigned by TaxBandits, and it is unique for each error.
    NamestringName of the errored node.
    MessagestringShows the error message.

Response JSON

Success Response - This is a sample response for successful API requests.

{
"StatusCode": 200,
"StatusName": "Ok",
"StatusMessage": "Successful API call",
"RecordId": "24ef4269-c356-4f0f-ac73-538235f566de",
"RefId": null,
"TINStatusCode": "TIN-001",
"TINStatus": "SUCCESS",
"TINStatusMsg": "TIN and Name combination matches IRS EIN records.",
"Errors": null
}