action linqr_image_delete_images_id_delete { label: "Delete image" description: "This endpoint allows you to delete images hosted in the LinQR storage." provider: linqr method: DELETE path: "/images/{id}" encoding: json input: { type: "object" properties: { id: { type: "string" format: "uuid4" } } required: ["id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }