action billingo_get_product { label: "Retrieve a product" description: "Retrieves the details of an existing product." provider: billingo method: GET path: "/products/{id}" encoding: json input: { type: "object" properties: { id: { type: "integer" } } required: ["id"] additionalProperties: false } output: { type: "object" required: ["currency", "name", "unit", "vat"] properties: { comment: { type: "string" } currency: { type: "string" enum: ["AUD", "BGN", "BRL", "CAD", "CHF", "CNY", "CZK", "DKK", "EUR", "GBP", "HKD", "HRK", "HUF", "IDR", "ILS", "INR", "ISK", "JPY", "KRW", "LTL", "LVL", "MXN", "MYR", "NOK", "NZD", "PHP", "PLN", "RON", "RSD", "RUB", "SEK", "SGD", "THB", "TRY", "UAH", "USD", "ZAR"] } general_ledger_number: { type: "string" } general_ledger_taxcode: { type: "string" } id: { type: "integer" } name: { type: "string" } net_unit_price: { type: "number" format: "float" } unit: { type: "string" } vat: { type: "string" enum: ["0%", "1%", "10%", "11%", "12%", "13%", "14%", "15%", "16%", "17%", "18%", "19%", "2%", "20%", "21%", "22%", "23%", "24%", "25%", "26%", "27%", "3%", "4%", "5%", "6%", "7%", "8%", "9%", "AAM", "AM", "EU", "EUK", "F.AFA", "FAD", "K.AFA", "MAA", "TAM", "ÁKK", "ÁTHK"] } } } }