action ebay_get_sales_tax { label: "getSalesTax" description: "This call gets the current sales tax table entry for a specific tax jurisdiction. Specify the jurisdiction to retrieve using the countryCode and jurisdictionId path parameters. All four response fields will be returned if a sales tax entry exists for the tax jurisdiction. Otherwise, the response will be returned as empty.

Important! In most US states and territories, eBay now 'collects and remits' sales tax, so sellers can no longer configure sales tax rates for these states/territories." provider: ebay method: GET 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" description: "This type is used to provide sales tax settings for a specific tax jurisdiction." properties: { countryCode: { type: "string" description: "The country code enumeration value identifies the country to which this sales tax rate applies. For implementation help, refer to eBay API documentation" } salesTaxJurisdictionId: { type: "string" description: "A unique ID that identifies the sales tax jurisdiction to which the sales tax rate applies (for example, a state within the United States)." } salesTaxPercentage: { type: "string" description: "The sales tax rate that will be applied to sales price. The shippingAndHandlingTaxed value will indicate whether or not sales tax is also applied to shipping and handling charges

Although it is a string, a percentage value is returned here, such as 7.75" } shippingAndHandlingTaxed: { type: "boolean" description: "If returned as true, sales tax is also applied to shipping and handling charges, and not just the total sales price of the order." } } } }