action api_delete_sales_tax {
label: "deleteSalesTax"
description: "This call deletes a sales tax table entry for a jurisdiction. Specify the jurisdiction to delete using the countryCode and jurisdictionId path parameters."
provider: api
method: DELETE
path: "/sales_tax/{countryCode}/{jurisdictionId}"
encoding: json
input: {
type: "object"
properties: {
countryCode: {
type: "string"
}
jurisdictionId: {
type: "string"
}
}
required: ["countryCode", "jurisdictionId"]
additionalProperties: false
}
output: {
type: "object"
additionalProperties: true
}
}