action formapi_update_template { label: "Update a Template" provider: formapi method: PUT path: "/templates/{template_id}" encoding: json input: { type: "object" properties: { template: { type: "object" properties: { allow_additional_properties: { type: "boolean" } description: { type: "string" } editable_submissions: { type: "boolean" } expiration_interval: { type: "string" enum: ["minutes", "hours", "days"] } expire_after: { type: "number" } expire_submissions: { type: "boolean" } footer_html: { type: "string" } header_html: { type: "string" } html: { type: "string" } name: { type: "string" } public_submissions: { type: "boolean" } public_web_form: { type: "boolean" } redirect_url: { type: "string" } scss: { type: "string" } slack_webhook_url: { type: "string" } webhook_url: { type: "string" } } } template_id: { type: "string" } } required: ["template", "template_id"] additionalProperties: false } output: { type: "object" required: ["status"] properties: { errors: { type: "array" items: { type: "string" } } status: { type: "string" enum: ["success", "error"] } } } }