action jumpseller_get_products_id_images_json { label: "Retrieve all Product Images." provider: jumpseller method: GET path: "/products/{id}/images.json" encoding: json input: { type: "object" properties: { id: { type: "integer" format: "int32" } } required: ["id"] additionalProperties: false } output: { type: "array" items: { type: "object" properties: { image: { type: "object" properties: { id: { type: "integer" format: "int32" description: "Unique identifier of the image" } position: { type: "integer" format: "int32" description: "Position of the image" } url: { type: "string" description: "Complete URL of the image" } } } } } } }