action voodoomfg_get_model_quote { label: "Get a quote a given model id.\n" description: "Calculates a quote for the given model in the given material and quantity. This endpoint required that you've already uploaded the model to our servers -- to get a quote for a model you haven't yet uploaded, you can try /model/quote_attrs.\n" provider: voodoomfg method: GET path: "/model/quote" encoding: json input: { type: "object" properties: { material_id: { type: "string" } model_id: { type: "string" } "options[orientation]": { type: "string" } quantity: { type: "string" } units: { type: "string" } } required: ["material_id", "model_id", "quantity", "units"] additionalProperties: false } output: { type: "object" additionalProperties: true } }