action voodoomfg_get_order_order_id { label: "Retrieve a previously created model by its id.\n" description: "In cases where you're ordering models you've created previously, you can fetch a specific model by its id.\n" provider: voodoomfg method: GET path: "/order/{order_id}" encoding: json input: { type: "object" properties: { order_id: { type: "string" } } required: ["order_id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }