Skip to main content
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

object
required
array
required
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

Some jurisdictions require or allow multiple tax types to be registered together:
  • optional: false — This tax type must be included with the primary type
  • optional: true — This tax type may be included (your choice)
For example, California requires RST + DTT together, while some states allow RST alone.

Using the Response

From the response, extract:
  1. registration_content_id — Use this when calling POST /registrations
  2. tax_type + related_tax_types — Combine to form the tax_types array
  3. frequencies — Pick one for the frequency field

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 the registration_content_id from this response.