action billbee_article_put_images { label: "Add multiple images to a product or replace the product images by the given images" provider: billbee method: PUT path: "/api/v1/products/{productId}/images" encoding: form input: { type: "object" properties: { productId: { type: "integer" format: "int64" } replace: { type: "boolean" } } required: ["productId"] additionalProperties: false } output: { type: "object" properties: { Data: { type: "object" properties: { ArticleId: { type: "integer" format: "int64" } Id: { type: "integer" format: "int64" } IsDefault: { type: "boolean" } Position: { type: "integer" format: "int32" } ThumbPathExt: { type: "string" } ThumbUrl: { type: "string" } Url: { type: "string" } } } ErrorCode: { type: "integer" format: "int32" enum: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28] } ErrorDescription: { type: "integer" format: "int32" enum: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28] } ErrorMessage: { type: "string" } } } }