action jumpseller_post_products_id_images_json { label: "Create a new Product Image." provider: jumpseller method: POST path: "/products/{id}/images.json" encoding: json input: { type: "object" properties: { image: { type: "object" properties: { url: { type: "string" description: "Complete URL of the image" } } } } } output: { 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" } } } } } }