action jumpseller_get_taxes_id_json { label: "Retrieve a single Tax information." provider: jumpseller method: GET path: "/taxes/{id}.json" encoding: json input: { type: "object" properties: { id: { type: "integer" format: "int32" } } required: ["id"] additionalProperties: false } output: { type: "object" properties: { tax: { type: "object" properties: { category_id: { type: "integer" format: "int32" description: "Unique identifier of the category of the Tax" } country: { type: "string" description: "Country name where the Tax applies" } fixed: { type: "boolean" description: "True if the tax has a fixed valued amount" } id: { type: "integer" format: "int32" description: "Unique identifier of the Tax" } name: { type: "string" description: "Name that identifies tax" } region: { type: "string" description: "Region name where the Tax applies" } shipping: { type: "boolean" description: "True if the tax should be applied to shipping costs" } tax_amount: { type: "number" format: "float" description: "Tax value for the given Tax" } } } } } }