get_form_questions
Retrieve all questions associated with a specific form by providing its ID, enabling users to manage and analyze form data efficiently with the Tally MCP Server.
Instructions
Get list of questions for a specific form
Input Schema
Name | Required | Description | Default |
---|---|---|---|
formId | Yes | The ID of the form |
Input Schema (JSON Schema)
{
"properties": {
"formId": {
"description": "The ID of the form",
"type": "string"
}
},
"required": [
"formId"
],
"type": "object"
}