action formapi_list_templates { label: "Get a list of all templates" provider: formapi method: GET path: "/templates" encoding: json input: { type: "object" properties: { page: { type: "integer" } parent_folder_id: { type: "string" } per_page: { type: "integer" } query: { type: "string" } } additionalProperties: false } output: { type: "array" items: { type: "object" required: ["allow_additional_properties", "description", "document_url", "editable_submissions", "expiration_interval", "expire_after", "expire_submissions", "id", "locked", "name", "page_dimensions", "parent_folder_id", "path", "permanent_document_url", "public_submissions", "public_web_form", "redirect_url", "slack_webhook_url", "template_type", "webhook_url"] properties: { allow_additional_properties: { type: "boolean" } description: { type: "string" } document_url: { type: "string" } editable_submissions: { type: "boolean" } expiration_interval: { type: "string" enum: ["minutes", "hours", "days"] } expire_after: { type: "number" } expire_submissions: { type: "boolean" } id: { type: "string" } locked: { type: "boolean" } name: { type: "string" } page_dimensions: { type: "array" items: { type: "array" items: { type: "number" } } } parent_folder_id: { type: "string" } path: { type: "string" } permanent_document_url: { type: "string" } public_submissions: { type: "boolean" } public_web_form: { type: "boolean" } redirect_url: { type: "string" } slack_webhook_url: { type: "string" } template_type: { type: "string" } webhook_url: { type: "string" } } } } }