delete_form_submission
Remove a specific form submission by providing the form ID and submission ID, ensuring data management and cleanup in Tally MCP Server.
Instructions
Delete a specific form submission
Input Schema
Name | Required | Description | Default |
---|---|---|---|
formId | Yes | The ID of the form | |
submissionId | Yes | The ID of the submission to delete |
Input Schema (JSON Schema)
{
"properties": {
"formId": {
"description": "The ID of the form",
"type": "string"
},
"submissionId": {
"description": "The ID of the submission to delete",
"type": "string"
}
},
"required": [
"formId",
"submissionId"
],
"type": "object"
}