Sales Tax API
Core Concepts
Corporations
Calculate
Transactions
- Tax Transactions
- POSTCreate a transaction
- GETGet transaction
- GETList transactions
- DELDelete transaction
- Refund Transactions
- Bulk Transaction Import
Nexus
Registrations
Products
Customers
Exemption Certificates
Submit required information for new registrations
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
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Response
The unique identifier for the registration.
"ec6d3db8-fd31-4303-8687-3ff98fb10ebf"
The unique identifier for a corporation.
"2535af08-a139-4d0c-9827-1651e46dfbcf"
ISO 3166 2-letter country code. Ex: US, IN, GB.
"US"
The two letter identifier of the state this registration applies to. Cannot be changed once set.
"CA"
The legal name of the entity being registered.
"Example Inc."
The date when this registration will expire. This is a DateOnly.
"2028-01-30"
ISO 8601 date only string, identifying the date when the state registration occurred.
Reflects whether Commenda has validated the seller's registration details.
PENDING
, VALIDATION_IN_PROGRESS
, INVALID
, VALID
Reflects the current stage of the registration process.
REGISTRATION_IN_PROGRESS
, REGISTERED
Reflects whether the registration is active and the business is operating in a given State.
VALID
, INVALID
, PENDING
, VALIDATION_IN_PROGRESS
Type of registration. Request additional types from the Commenda team as required.
SALES_TAX_REGISTRATION
The two letter identifier of the jurisdiction this registration applies to.
"CA"
Indicates whether Commenda is automatically filing taxes for this tax registration.
FILING
, NOT_FILING
"Successfully created registration."
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."
}