Registration Content
Get Registration Options
Get available tax types, frequencies, and registration content IDs for jurisdictions
POST
Retrieve the registration options for one or more jurisdictions. This endpoint returns the
registration_content_id you’ll need to create a registration, along with available tax types and filing frequencies.
Request Body
Array of jurisdiction IDs to get options for. Get these from the Available Jurisdictions endpoint.Example:
["JUR_US_STATE_CA", "JUR_US_STATE_TX"]Response Fields
| Field | Type | Description |
|---|---|---|
options | array | Registration options for each jurisdiction |
options[].jurisdiction_id | string | The jurisdiction ID |
options[].jurisdiction_name | string | Human-readable name |
options[].registrations | array | Available registration types |
options[].registrations[].registration_content_id | string | Content ID to use when creating a registration |
options[].registrations[].tax_type | string | Primary tax type for this registration |
options[].registrations[].frequencies | array | Valid filing frequencies |
options[].registrations[].related_tax_types | array | Additional tax types that can/must be included |
Related Tax Types
Some jurisdictions require or allow multiple tax types to be registered together:optional: false— This tax type must be included with the primary typeoptional: true— This tax type may be included (your choice)
Using the Response
From the response, extract:registration_content_id— Use this when callingPOST /registrationstax_type+related_tax_types— Combine to form thetax_typesarrayfrequencies— Pick one for thefrequencyfield
Example: Creating a California Registration
From the response above, California requires RST + DTT:Next Steps
After getting registration options, use the Portal Fields endpoint to understand what credentials are needed for automated filing. Then Create a Registration using theregistration_content_id from this response.
Related
- List Available Jurisdictions — Find jurisdictions first
- Registration Content Overview — Full content API workflow