action trashnothing_get_photos_by_ids { label: "Retrieve multiple photos" provider: trashnothing method: GET path: "/photos/multiple" encoding: json input: { type: "object" properties: { device_pixel_ratio: { type: "number" } photo_ids: { type: "string" } } required: ["photo_ids"] additionalProperties: false } output: { type: "array" items: { type: "object" description: "The result of uploading or editing a photo." properties: { photo_id: { type: "string" } thumbnail: { type: "object" description: "Photo thumbnail data." properties: { height: { type: "integer" } url: { type: "string" } width: { type: "integer" } } } } } } }