action billbee_article_update_stock_code { label: "Update the stock code of an article" provider: billbee method: POST path: "/api/v1/products/updatestockcode" encoding: form input: { type: "object" properties: { BillbeeId: { type: "integer" format: "int64" } Sku: { type: "string" } StockCode: { type: "string" } StockId: { type: "integer" format: "int64" } } } output: { type: "object" properties: { Data: { type: "object" properties: {} } 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" } } } }