action voodoomfg_get_model_quote_attrs { label: "Get a quote for a model with the given attributes.\n" description: "This endpoint will provide a quote for a model matching the submitted parameters. Note that this quote may be different than the quote provided by /model/quote in the case that your attribute calculations differ from the ones used by Voodoo Manufacturing.\n" provider: voodoomfg method: GET path: "/model/quote_attrs" encoding: json input: { type: "object" properties: { material_id: { type: "string" } "options[orientation]": { type: "string" } quantity: { type: "string" } surface_area: { type: "string" } units: { type: "string" } volume: { type: "string" } x: { type: "string" } y: { type: "string" } z: { type: "string" } } required: ["material_id", "quantity", "surface_area", "units", "volume", "x", "y", "z"] additionalProperties: false } output: { type: "object" additionalProperties: true } }