Each taxing jurisdiction has a unique ID assigned to it, referred to as a TJID or jurisdictionId.
State/province TJIDs by country
This request returns all state or province TJIDs for a given country.
Request information
- HTTP method: GET
- URL (Replace countryId with the TJID for the country)
- CertManager UAT: https://certmanager-uat.sovos.com/api/pre-auth/v1/locations/tax-jurisdictions/states/countryId
- CertManager Production: https://certmanager.sovos.com/api/pre-auth/v1/locations/tax-jurisdictions/states/countryId
Country TJIDs
Use one of the following TJIDs for countryId:
- United States: 227
- Canada: 39
Example response
{
"status": 200,
"data": [
{
"code": 294,
"name": "ALABAMA",
"isocode": "AL",
"type": 2,
"parentCode": 227
},
{
"code": 293,
"name": "ALASKA",
"isocode": "AK",
"type": 2,
"parentCode": 227
},
...
],
"success": true
}
Local TJIDs by state/province
This request returns all local TJIDs for a given state or province.
Request information
- HTTP method: GET
- Content-type header:
- URL (Replace stateId with the TJID for the state or province)
- CertManager UAT: https://certmanager-uat.sovos.com/api/pre-auth/v1/locations/tax-jurisdictions/for-state/stateId
- CertManager Production: https://certmanager.sovos.com/api/pre-auth/v1/locations/tax-jurisdictions/for-state/stateId
State TJIDs
Use one of the following TJIDs for stateId:
State/Province Code |
State/Province Name |
TJID |
AL | Alabama | 294 |
AK | Alaska | 293 |
AB | Alberta | 307 |
AZ | Arizona | 292 |
AR | Arkansas | 291 |
BC | British Columbia | 306 |
CA | California | 290 |
CO | Colorado | 289 |
CT | Connecticut | 288 |
DE | Delaware | 287 |
DC | District of Columbia | 286 |
FL | Florida | 285 |
GA | Georgia | 284 |
HI | Hawaii | 283 |
ID | Idaho | 282 |
IL | Illinois | 281 |
IN | Indiana | 280 |
IA | Iowa | 279 |
KS | Kansas | 278 |
KY | Kentucky | 277 |
LA | Louisiana | 276 |
ME | Maine | 275 |
MB | Manitoba | 305 |
MD | Maryland | 274 |
MA | Massachusetts | 273 |
MI | Michigan | 272 |
MN | Minnesota | 271 |
MS | Mississippi | 270 |
MO | Missouri | 269 |
MT | Montana | 268 |
NE | Nebraska | 267 |
NV | Nevada | 266 |
NB | New Brunswick | 304 |
NH | New Hampshire | 265 |
NJ | New Jersey | 264 |
NM | New Mexico | 263 |
NY | New York | 262 |
NL | Newfoundland and Labrador | 303 |
NC | North Carolina | 261 |
ND | North Dakota | 260 |
NT | Northwest Territories | 302 |
NS | Nova Scotia | 301 |
NU | Nunavut | 295 |
OH | Ohio | 259 |
OK | Oklahoma | 258 |
ON | Ontario | 300 |
OR | Oregon | 257 |
PA | Pennsylvania | 256 |
PE | Prince Edward Island | 299 |
PR | Puerto Rico | 8361 |
QC | Quebec | 298 |
RI | Rhode Island | 255 |
SK | Saskatchewan | 297 |
SC | South Carolina | 254 |
SD | South Dakota | 253 |
TN | Tennessee | 252 |
TX | Texas | 251 |
UT | Utah | 250 |
VT | Vermont | 249 |
VA | Virginia | 248 |
WA | Washington | 247 |
WV | West Virginia | 246 |
WI | Wisconsin | 245 |
WY | Wyoming | 244 |
YT | Yukon | 296 |
Example response
{
"status": 200,
"data": [
{
"code": 308,
"name": "COVINGTON",
"isocode": "COVINGTON",
"type": 3,
"parentCode": 294
},
{
"code": 310,
"name": "CULLMAN",
"isocode": "CULLMAN",
"type": 3,
"parentCode": 294
},
...
],
"success": true
}