action izettle_get_all_image_urls { label: "Retrieve all library item images" description: "Retrieves all library items images used by the organization, sorted by updated date" provider: izettle method: GET path: "/organizations/{organizationUuid}/images" encoding: json input: { type: "object" properties: { organizationUuid: { type: "string" format: "uuid" } } required: ["organizationUuid"] additionalProperties: false } output: { type: "object" properties: { imageUrls: { type: "array" items: { type: "string" } } } } }