action illumidesk_billing_invoice_items_list { label: "Get invoice items for a given invoice." provider: illumidesk method: GET path: "/v1/{namespace}/billing/invoices/{invoice_id}/invoice-items/" encoding: json input: { type: "object" properties: { invoice_id: { type: "string" } limit: { type: "string" } namespace: { type: "string" } offset: { type: "string" } ordering: { type: "string" } } required: ["invoice_id", "namespace"] additionalProperties: false } output: { type: "object" additionalProperties: true } }