action rebilly_get_invoice_item_collection { label: "Retrieve invoice items" description: "Retrieve an invoice items with specified invoice identifier string.\n" provider: rebilly method: GET path: "/invoices/{id}/items" encoding: json output: { type: "array" items: { type: "object" required: ["type", "unitPrice"] properties: { _embedded: { type: "array" description: "Any embedded objects available that are requested by the `expand` querystring parameter." items: { type: "object" } } _links: { type: "array" description: "The links related to resource." items: { type: "object" } } createdTime: { description: "Invoice item created time." type: "object" } description: { type: "string" description: "Invoice item's description." } discountAmount: { type: "number" format: "double" description: "Invoice item discount amount." } id: { description: "The website identifier string." type: "object" } periodEndTime: { type: "string" format: "date-time" description: "End time." } periodNumber: { type: "integer" description: "Invoice item subscription order period number." } periodStartTime: { type: "string" format: "date-time" description: "Start time." } price: { type: "number" format: "double" description: "Invoice item's total price." } productId: { description: "The product's ID." type: "object" } quantity: { type: "integer" description: "Invoice item's quantity." } type: { type: "string" description: "Invoice item's type." enum: ["debit", "credit"] } unitPrice: { type: "number" format: "double" description: "Invoice item's price." } updatedTime: { description: "Invoice item updated time." type: "object" } } } } }