TIN Match Request (Asynchronous)

This endpoint will be used to submit tin and name match asynchronous requests.

Credit Message Error
- {"code": "credit_message", "message": "Credit limit reached! For assistance, please contact the support"}

You can submit a TIN check by passing a Business Name or an Individual name along with their EIN or SSN accordingly. It is an asynchronous API call in which a request-id is provided in the response. Need to use the GET API call by ID (request id) to see the result. Please check the How API Works section on how the asynchronous API life cycle works.

{
    "tin": string,
    "name": string,
    “webhook_urls”: [string]
}
{
    "id": interger,
    "name": string,
    "tin": string,
    "status": string,
    "created_by": string,
    "irs_code": integer,
    "irs_reason": string,
    "irs_service_status": string,
    "last_irs_check_date": string,
    "created_date": string,
    "updated_date": string,
   
  }

Request Parameters:

Field NameField TypeMandatory/OptionalDescription
tinStringMandatory9 digits without any special characters
nameStringMandatoryNot more than 40 characters. No special characters allowed except ampersand (&), hyphen(-)
webhook_urlsList of StringOptionalA Valid endpoint should return a success status 2xx. Once the result is available we will post it to the endpoint. Read more on Webhooks

Response Parameters:

Field NameField TypeDescription
idIntegerID is given by the application for future reference
nameStringSubmitted Name while POST request
tinStringSubmitted TIN while POST request
statusStringRepresents what state the request is in. Possible statuses are Pending / TIN Matched / Did Not Match / In Review
irs_codeIntegerCode given by IRS 0-8, Additional codes by Compliancely are -1 & 10
irs_reasonStringIRS Reason for mentioned IRS Code
irs_service_statusStringRepresents if the IRS is running at the time of request. Possible values are
RUNNING (or) THE IRS TIN MATCHING SERVICE IS SLOW OR CURRENTLY EXPERIENCING AN OUTAGE
last_irs_check_dateDate StringLast IRS check date of the cached result.
created_byStringUsername who submits the POST request
created_dateDate StringRequest created date
updated_dateDate StringRequest updated date

What is the IRS code in TIN Match?

IRS provides the results represented as code for each request. Please check the below table to see what each code represents

irs_codeirs_reason
0TIN and Name combination matches IRS records.
1TIN was missing or TIN not 9-digit numeric.
2TIN entered is not currently issued.
3TIN and Name combination does not match IRS records.
4Invalid TIN Matching request.
5Duplicate TIN Matching request. Note: IRS doesn't allow the more than 3 duplicates (Either TIN or Name) repeating with in 24 Hrs
6TIN and Name combination matches IRS SSN records.
(or)
TIN and Name combination matches IRS ITIN records.
7TIN and Name combination matches IRS EIN records.
(or)
TIN and Name combination matches IRS ITIN records.
8TIN and Name combination matches IRS SSN and EIN records.
(or)
TIN and Name combination matches IRS ITIN records.
-1The request is Pending (Compliancely Code)
10Duplicate record - We're reviewing the information. (Compliancely Code)

Possible Error Responses

Response CodeResponse
400{
"name": [
"This field may not be blank."
]
}
{  
"tin": [
"This field may not be blank."
]
}
{
"name": [
"Ensure this field has no more than 40 characters."
]
}
{
"tin": [
"TIN format is invalid/ TIN must be 9 digits"
]
}
{
"name": [
"Business name should contain at least one alphabet"
]
}
403{"detail": "Invalid token header. No credentials provided."}
{"detail": "Invalid token."}
{"detail": "Credit limit reached! For assistance, please contact the support"}
500Server Error

Note: '999999999', '078051120', '111111111', '123456789', '219099999', '123456789', '000000000', and 987654320 - 987654329 are treated as invalid TINs.


Language
Credentials
Basic
base64
:
Click Try It! to start a request and see the response here!