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