action linqr_image_list_all_images_get { label: "List all images" description: "This endpoint allows you to list images hosted in the LinQR storage. If there are no images hosted, an empty array is returned." provider: linqr method: GET path: "/images" encoding: json output: { type: "array" items: { type: "object" required: ["id", "source", "size", "created"] properties: { created: { type: "string" format: "date-time" description: "The creation time of the image." } id: { type: "string" format: "uuid4" description: "Image identifier." } size: { type: "integer" description: "Size of the source file in bytes" } source: { type: "string" description: "Source file name." } } additionalProperties: false } } }