Documentation Index
Fetch the complete documentation index at: https://docs.commenda.io/llms.txt
Use this file to discover all available pages before exploring further.
Overview
The Registration Content API provides a data-driven approach to creating tax registrations. Instead of manually specifying jurisdiction details, you use these endpoints to:- Discover jurisdictions where you can register
- Get registration options (tax types, frequencies) for each jurisdiction
- Get portal requirements (credentials needed for automated filing)
After gathering content information, use the Create Registration endpoint to create your registration.
Workflow
Search Available Jurisdictions
Use List Available Jurisdictions to find jurisdictions where you can register. Returns
jurisdiction_id for each matching jurisdiction.Get Registration Options
Use Get Registration Options to get the
registration_content_id, available tax_types, and frequencies for your selected jurisdictions.Get Portal Requirements
Use Get Portal Fields to get the portal credentials needed for automated filing (username, password, PIN, etc.).
Create Registration
Use Create Registration with the
registration_content_id from step 2.Key Concepts
Jurisdiction IDs
Each tax jurisdiction has a uniquejurisdiction_id like:
JUR_US_STATE_CA— California (state)JUR_US_COUNTY_CA_LOS_ANGELES— Los Angeles CountyJUR_US_CITY_CO_DENVER— Denver (city)
Registration Content IDs
Each registration type has aregistration_content_id that encodes the jurisdiction and tax type:
CCT_US_STATE_CEN_06_RST— California Retail Sales TaxCCT_US_STATE_CEN_48_RST— Texas Retail Sales TaxCCT_US_STATE_CEN_36_RST— New York Retail Sales Tax
Jurisdiction Types
| Type | Description |
|---|---|
TRADEBLOC | Trade bloc level (e.g., European Union). Covers multiple member countries under a single registration. |
COUNTRY | Country level (for non-US jurisdictions or EU member states) |
STATE_OR_PROVINCE | State or province level (most common for US) |
CITY | City with separate filing requirements (home-rule) |
COUNTY | County with separate filing requirements |
DISTRICT | Special taxing district |
LOCAL | Other local jurisdiction |
TERRITORY | US territory |
Tax Types
| Code | Name |
|---|---|
RST | Retail Sales Tax |
RUT | Retailer’s Use Tax |
DTT | District Transaction Tax |
SST | Simplified Sellers Use Tax |
VAT | Value Added Tax |
API Endpoints
| Endpoint | Description |
|---|---|
POST /registrations/content/available-jurisdictions | Search for jurisdictions where you can register |
POST /registrations/content/registration-input-options | Get tax types and frequencies for jurisdictions |
POST /registrations/content/portal-fields | Get portal credential requirements |
Related
- Tax Registrations Overview — Full registration workflow and concepts
- Create Registration — Create a registration using content IDs