POST
/
registrations
/
new-registration
/
fields
curl --request POST \
  --url https://base_url/api/v1/registrations/new-registration/fields \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "registration_id": "ec6d3db8-fd31-4303-8687-3ff98fb10ebf",
    "corporation_id": "2535af08-a139-4d0c-9827-1651e46dfbcf",
    "country": "US",
    "country_specific_details": {
      "state": "CA",
      "legal_name": "Example Inc.",
      "expiring_at": "2028-01-30"
    },
    "registered_at": "2023-12-25",
    "validation_status": "PENDING",
    "filing_status": "FILING",
    "registration_status": "REGISTRATION_IN_PROGRESS",
    "business_activity_status": "VALID",
    "registration_type": "SALES_TAX_REGISTRATION",
    "jurisdiction": "CA"
  },
  "message": "Successfully created registration."
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200
application/json
Successful submission of new registration request
data
object
message
string
Example:

"Successfully created registration."