action billingo_list_product { label: "List all product" description: "Returns a list of your products. The partners are returned sorted by creation date, with the most recent partners appearing first." provider: billingo method: GET path: "/products" encoding: json input: { type: "object" properties: { page: { type: "integer" } per_page: { type: "integer" } } additionalProperties: false } output: { type: "object" description: "A object with a data property that contains an array of up to limit products. Each entry in the array is a separate product object. If no more products are available, the resulting array will be empty." properties: { current_page: { type: "integer" } data: { type: "array" items: { type: "object" required: ["name", "currency", "vat", "unit"] 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"] } } } } last_page: { type: "integer" } next_page_url: { type: "string" } per_page: { type: "integer" } prev_page_url: { type: "string" } total: { type: "integer" } } } }