action apacta_get_materials_material_id_rentals_material_rental_id { label: "Show rental foor materi" provider: apacta method: GET path: "/materials/{material_id}/rentals/{material_rental_id}/" encoding: json input: { type: "object" properties: { material_id: { type: "string" } material_rental_id: { type: "string" } } required: ["material_id", "material_rental_id"] additionalProperties: false } output: { type: "object" properties: { data: { type: "object" properties: { amount: { 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" } from_date: { type: "string" format: "dateTime" } id: { type: "string" format: "uuid" } is_invoiced: { type: "string" format: "dateTime" } material_id: { type: "string" format: "uuid" } modified: { type: "string" format: "dateTime" } modified_by_id: { type: "string" format: "uuid" } project_id: { type: "string" format: "uuid" } quantity: { type: "number" format: "float" } to_date: { type: "string" format: "dateTime" } } } success: { type: "boolean" } } } }