action linqr_image_list_images_id_get { label: "List image" description: "This endpoint allows you to list single image hosted in the LinQR storage." provider: linqr method: GET path: "/images/{id}" encoding: json input: { type: "object" properties: { id: { type: "string" format: "uuid4" } } required: ["id"] additionalProperties: false } output: { type: "object" required: ["created", "id", "size", "source"] 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 } }