Back to All

SubClient Creation > TIN Error

Hello,

I'm creating a SubClient in the following format, however not using exact data, as this is in production:

{
    "name": "TabaSlims",
    "tin": "01-0123456",
    "type": "LLC",
    "email": "[email protected]",
    "address": {
        "line1": "605 Ellis Street",
        "city": "Mountain View",
        "state": "CA",
        "zipcode": "94043",
        "country": "840"
    },
    "phone": {
        "countryCode": "1",
        "number": "4159808222"
    },
    "mcc": "1234"
}

And I'm getting the following error:

{
  "SC": 400,
  "EC": "22110122",
  "EM": "tin"
}

Which is odd as the TIN looks fine to me, it's matching the format described on wikipedia:
"An EIN is usually written in form 00-0000000"
Source: https://en.wikipedia.org/wiki/Employer_Identification_Number

Any tips are greatly appreciated.
Thanks!