curl --request GET \
--url https://base_url/api/v1/registrations \
--header 'Authorization: Bearer <token>'{
"data": {
"registrations": [
{
"registration_id": "ec6d3db8-fd31-4303-8687-3ff98fb10ebf",
"corporation_id": "2535af08-a139-4d0c-9827-1651e46dfbcf",
"country": "US",
"country_specific_details": {
"legal_name": "Example Inc.",
"state": "CA",
"state_specific_details": {
"payment_interval": "<string>",
"sales_tax_id": "<string>",
"username": "<string>",
"password": "<string>",
"pin": "<string>",
"web_file_number": "<string>",
"tax_types": [
"RSST"
]
}
},
"registered_at": "2023-12-25",
"validation_status": "PENDING",
"registration_status": "REGISTRATION_IN_PROGRESS",
"business_activity_status": "VALID",
"registration_type": "SALES_TAX_REGISTRATION",
"jurisdiction": "CA",
"filing_status": "FILING"
}
]
},
"message": "Successfully fetched registrations."
}Fetches all sales tax registrations associated with a specific corporation.
curl --request GET \
--url https://base_url/api/v1/registrations \
--header 'Authorization: Bearer <token>'{
"data": {
"registrations": [
{
"registration_id": "ec6d3db8-fd31-4303-8687-3ff98fb10ebf",
"corporation_id": "2535af08-a139-4d0c-9827-1651e46dfbcf",
"country": "US",
"country_specific_details": {
"legal_name": "Example Inc.",
"state": "CA",
"state_specific_details": {
"payment_interval": "<string>",
"sales_tax_id": "<string>",
"username": "<string>",
"password": "<string>",
"pin": "<string>",
"web_file_number": "<string>",
"tax_types": [
"RSST"
]
}
},
"registered_at": "2023-12-25",
"validation_status": "PENDING",
"registration_status": "REGISTRATION_IN_PROGRESS",
"business_activity_status": "VALID",
"registration_type": "SALES_TAX_REGISTRATION",
"jurisdiction": "CA",
"filing_status": "FILING"
}
]
},
"message": "Successfully fetched registrations."
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
The unique identifier of the corporation for which to retrieve data.
Sales tax registration response
Show child attributes
Show child attributes
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"
Show child attributes
The legal name of the entity being registered.
"Example Inc."
2-letter code for each state. Suffix of the ISO 3166-2 code. Ex: CA, NY, TX.
"CA"
Show child attributes
Payment interval for sales tax.
Sales tax ID.
Username for tax filing.
Password for tax filing.
PIN for tax filing.
Web file number for tax filing.
Enum representing different types of taxes applicable in various jurisdictions.
RSST, RST, RUT, SSUT, GRT, VUT, RTPT, TPT, DTT, RDF, SUT, GET, ROT, CUT, RSSUT, BAO 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 fetched registrations."