action billbee_article_get_stocks { label: "Query all defined stock locations" provider: billbee method: GET path: "/api/v1/products/stocks" encoding: json output: { type: "object" properties: { Data: { type: "array" items: { type: "object" properties: { Description: { type: "string" } Id: { type: "integer" format: "int64" } IsDefault: { type: "boolean" } Name: { 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" } } } }