Skip to main content
Version: 1.7.3

Status

Status

This endpoint can be used to retrieve the status of your instant TIN Matching requests. Listed below are the different types of statuses available.

Status CodeDescription
TIN-001SUCCESS – The recipient’s TIN and name combination matches the IRS records
TIN-002FAILED – The recipient’s TIN and name combination doesn’t match the IRS records
TIN-003ONHOLD – If the IRS system experiences intermittent issues, the TIN Matching status may show as “ONHOLD”, causing a delay in results. Once the IRS system is ready, we will complete the TIN Matching and provide the status instantly via Webhook (if configured). The delay can be up to 30 minutes in the Sandbox and up to 36 hours in the Live environment.

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.

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.

Request Params

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

Response JSON

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

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