action apacta_get_materials_material_id { label: "View material" provider: apacta method: GET path: "/materials/{material_id}" encoding: json input: { type: "object" properties: { material_id: { type: "string" } } required: ["material_id"] additionalProperties: false } output: { type: "object" properties: { data: { type: "object" properties: { barcode: { type: "string" } billing_cycle: { type: "string" } centiga_id: { type: "string" } company_id: { type: "string" format: "uuid" } cost_price: { type: "number" format: "float" } 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" } id: { type: "string" format: "uuid" } is_single_usage: { type: "boolean" } modified: { type: "string" format: "dateTime" } modified_by_id: { type: "string" format: "uuid" } name: { type: "string" } pogo_id: { type: "string" } selling_price: { type: "number" format: "float" } tripletex_id: { type: "string" } } } success: { type: "boolean" } } } }