action apacta_get_materials_material_id_rentals { label: "Show list of rentals for specific material" provider: apacta method: GET path: "/materials/{material_id}/rentals/" encoding: json input: { type: "object" properties: { material_id: { type: "string" } } required: ["material_id"] additionalProperties: false } output: { type: "object" properties: { data: { type: "array" items: { 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" } } } } pagination: { type: "object" properties: { count: { type: "integer" } current_page: { type: "string" } has_next_page: { type: "boolean" } has_prev_page: { type: "boolean" } limit: { type: "integer" } page_count: { type: "string" } } } success: { type: "boolean" } } } }