action billbee_article_get_images { label: "Returns a list of all images of the product" provider: billbee method: GET path: "/api/v1/products/{productId}/images" encoding: json input: { type: "object" properties: { productId: { type: "integer" format: "int64" } } required: ["productId"] additionalProperties: false } output: { type: "object" properties: { Data: { type: "array" items: { 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" } } } }