action billbee_article_get_reserved_amount { label: "Queries the reserved amount for a single article by id or by sku" provider: billbee method: GET path: "/api/v1/products/reservedamount" encoding: json input: { type: "object" properties: { id: { type: "string" } lookupBy: { type: "string" } stockId: { type: "integer" format: "int64" } } required: ["id"] additionalProperties: false } output: { type: "object" properties: { Data: { type: "object" properties: { ReservedAmount: { type: "number" format: "double" description: "The reserve (not fulfilled) qty of the article" } } } 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" } } } }