action apacta_get_invoice_lines_invoice_line_id { label: "View invoice line" provider: apacta method: GET path: "/invoice_lines/{invoice_line_id}" encoding: json input: { type: "object" properties: { invoice_line_id: { type: "string" format: "uuid" } } required: ["invoice_line_id"] additionalProperties: false } output: { type: "object" properties: { data: { type: "object" properties: { created: { type: "string" format: "dateTime" } created_by_id: { type: "string" format: "uuid" } deleted: { type: "string" format: "dateTime" description: "Only present if it's a deleted object" } description: { type: "string" } discount_percent: { type: "integer" format: "int32" } discount_text: { type: "string" } ean_product_id: { type: "string" format: "uuid" } form_id: { type: "string" format: "uuid" } id: { type: "string" format: "uuid" } invoice_id: { type: "string" format: "uuid" } material_id: { type: "string" format: "uuid" } modified: { type: "string" format: "dateTime" } name: { type: "string" } parent_id: { type: "string" format: "uuid" } product_bundle_id: { type: "string" format: "uuid" } product_id: { type: "string" format: "uuid" } quantity: { type: "integer" format: "int32" } selling_price: { type: "number" format: "float" } type: { type: "string" enum: ["normal", "text", "bundle"] } user_id: { type: "string" format: "uuid" } } } success: { type: "boolean" } } } }