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
Webhooks
Update webhook
Update an existing webhook.
POST
/
webhooks
/
:id
Copy
curl --request POST \
--url https://base_url/api/v1/webhooks/:id \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"api_version": "<string>",
"name": "<string>",
"topics": [
"REGISTRATIONS.EXISTING.VALIDATION_FAILED"
],
"status": "ENABLED"
}'
Copy
{
"message": "Successfully updated webhook."
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Body
application/json
Response
200
application/json
Sales tax registration response
The response is of type object
.
Copy
curl --request POST \
--url https://base_url/api/v1/webhooks/:id \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"api_version": "<string>",
"name": "<string>",
"topics": [
"REGISTRATIONS.EXISTING.VALIDATION_FAILED"
],
"status": "ENABLED"
}'
Copy
{
"message": "Successfully updated webhook."
}
Assistant
Responses are generated using AI and may contain mistakes.